Data Summarization

  • Basic statistical summarization
    • mean(x): takes the mean of x
    • sd(x): takes the standard deviation of x
    • median(x): takes the median of x
    • quantile(x): displays sample quantiles of x. Default is min, IQR, max
    • range(x): displays the range. Same as c(min(x), max(x))
    • sum(x): sum of x
    • max(x): maximum value in x
    • min(x): minimum value in x
  • all have the na.rm = argument for missing data

Statistical summarization

These functions work on vectors:

x <- c(1, 5, 7, 4, 2, 8)
mean(x)
[1] 4.5

Summarization on a data.frame/tibble:

mtcars %>% pull(hp) %>% mean()
[1] 146.6875

GUT CHECK!

What kind of object do we need to run summary operators like mean() ?

A. A vector of numbers

B. A vector of characters

C. A dataset

UFO Data

Let’s use the UFO data again:

ufo <- read_csv("https://sisbid.github.io/Data-Wrangling/data/ufo/ufo_data_complete.csv")
ufo <- ufo %>% rename(duration_s = `duration (seconds)`)
head(ufo)
# A tibble: 6 × 11
  datetime  city  state country shape duration_s `duration (hours/min)` comments
  <chr>     <chr> <chr> <chr>   <chr>      <dbl> <chr>                  <chr>   
1 10/10/19… san … tx    us      cyli…       2700 45 minutes             This ev…
2 10/10/19… lack… tx    <NA>    light       7200 1-2 hrs                1949 La…
3 10/10/19… ches… <NA>  gb      circ…         20 20 seconds             Green/O…
4 10/10/19… edna  tx    us      circ…         20 1/2 hour               My olde…
5 10/10/19… kane… hi    us      light        900 15 minutes             AS a Ma…
6 10/10/19… bris… tn    us      sphe…        300 5 minutes              My fath…
# ℹ 3 more variables: `date posted` <chr>, latitude <chr>, longitude <chr>

Column to vector

Let’s work with one column as a vector using pull().

ufo_shapes <- ufo %>% pull(shape)
ufo_shapes
    [1] "cylinder"  "light"     "circle"    "circle"    "light"     "sphere"   
    [7] "circle"    "disk"      "disk"      "disk"      "circle"    "fireball" 
   [13] "disk"      "unknown"   "oval"      "circle"    "disk"      "disk"     
   [19] "light"     "light"     "other"     "disk"      "light"     "light"    
   [25] "oval"      "cigar"     "other"     "light"     "rectangle" "chevron"  
   [31] "triangle"  "oval"      "unknown"   "sphere"    "unknown"   "light"    
   [37] "disk"      "circle"    "other"     "formation" "triangle"  "chevron"  
   [43] "disk"      "triangle"  "unknown"   "light"     "unknown"   "disk"     
   [49] "triangle"  "triangle"  "unknown"   "triangle"  "unknown"   "triangle" 
   [55] "formation" "unknown"   "cigar"     "unknown"   "sphere"    "light"    
   [61] "other"     "cigar"     "rectangle" "light"     "sphere"    NA         
   [67] NA          NA          "triangle"  "light"     "light"     "cylinder" 
   [73] "delta"     "sphere"    "triangle"  "other"     "disk"      "changing" 
   [79] "fireball"  "cylinder"  "cigar"     "circle"    "triangle"  "triangle" 
   [85] "light"     "egg"       "fireball"  "changing"  "egg"       "unknown"  
   [91] "other"     "fireball"  "sphere"    "circle"    "light"     "light"    
   [97] "sphere"    "flash"     "triangle"  "chevron"   "oval"      "oval"     
  [103] "flash"     "other"     "cylinder"  "triangle"  "oval"      "light"    
  [109] "light"     "unknown"   "diamond"   "triangle"  "formation" "other"    
  [115] "circle"    "rectangle" "changing"  "triangle"  "triangle"  "flash"    
  [121] "unknown"   "circle"    "sphere"    "unknown"   "other"     "circle"   
  [127] "egg"       "cross"     "light"     "oval"      "sphere"    "other"    
  [133] "light"     "oval"      "formation" "light"     "unknown"   "sphere"   
  [139] "triangle"  "other"     "changing"  "sphere"    "oval"      "unknown"  
  [145] "circle"    "unknown"   "sphere"    "oval"      "formation" "circle"   
  [151] "flash"     "light"     "light"     "sphere"    "other"     "other"    
  [157] "oval"      NA          "egg"       "triangle"  "formation" "unknown"  
  [163] "other"     "light"     "light"     "disk"      "disk"      "diamond"  
  [169] "triangle"  "unknown"   "light"     "triangle"  "fireball"  "other"    
  [175] "formation" "light"     "disk"      "unknown"   "triangle"  "light"    
  [181] "changing"  "changing"  "sphere"    "circle"    "oval"      "triangle" 
  [187] "circle"    "flash"     "sphere"    "fireball"  "unknown"   "unknown"  
  [193] "oval"      "formation" "light"     "circle"    "unknown"   "other"    
  [199] "triangle"  "light"     "other"     "light"     "circle"    "disk"     
  [205] "formation" "oval"      "flash"     "triangle"  "triangle"  "light"    
  [211] "formation" "unknown"   "oval"      "light"     "light"     "oval"     
  [217] "disk"      "circle"    "sphere"    "rectangle" "egg"       "unknown"  
  [223] "unknown"   "unknown"   "light"     "light"     "disk"      "other"    
  [229] "changing"  "light"     "light"     "circle"    "circle"    "formation"
  [235] "flash"     "light"     "light"     "triangle"  "cigar"     "light"    
  [241] "triangle"  "oval"      "fireball"  "cylinder"  "other"     "disk"     
  [247] "circle"    "egg"       "changing"  "disk"      "triangle"  "circle"   
  [253] "other"     "circle"    "oval"      "oval"      "disk"      "flash"    
  [259] "light"     NA          "flash"     "fireball"  "fireball"  "circle"   
  [265] "circle"    "triangle"  "circle"    "triangle"  "sphere"    "oval"     
  [271] "light"     "circle"    "light"     "changing"  "disk"      "triangle" 
  [277] "fireball"  "light"     "other"     "sphere"    "light"     "changing" 
  [283] "cigar"     "light"     "cylinder"  "rectangle" "light"     "chevron"  
  [289] "triangle"  "triangle"  "light"     "light"     "light"     "light"    
  [295] "light"     "circle"    "circle"    "light"     "light"     "circle"   
  [301] "sphere"    "triangle"  NA          "triangle"  "light"     "egg"      
  [307] "circle"    NA          "light"     "fireball"  "fireball"  "sphere"   
  [313] "sphere"    "sphere"    "triangle"  "chevron"   "triangle"  NA         
  [319] NA          "formation" "light"     "sphere"    NA          "other"    
  [325] "cigar"     "light"     "sphere"    "sphere"    "sphere"    "fireball" 
  [331] "light"     "triangle"  "light"     "unknown"   "oval"      "light"    
  [337] "disk"      "oval"      "oval"      "oval"      "oval"      "other"    
  [343] "cigar"     "triangle"  "light"     "light"     "light"     "disk"     
  [349] "disk"      "diamond"   "light"     "light"     "changing"  "light"    
  [355] "light"     "other"     "light"     "teardrop"  "triangle"  "teardrop" 
  [361] "fireball"  "sphere"    "cylinder"  "fireball"  NA          "circle"   
  [367] "egg"       "sphere"    "fireball"  "circle"    "cigar"     "light"    
  [373] "unknown"   "disk"      "chevron"   "triangle"  "rectangle" "light"    
  [379] "other"     "light"     "light"     "formation" "circle"    "rectangle"
  [385] "light"     "fireball"  "sphere"    "formation" "light"     "formation"
  [391] "light"     "circle"    "circle"    "formation" "light"     "light"    
  [397] "light"     "formation" "light"     "triangle"  "light"     "oval"     
  [403] "light"     "oval"      "disk"      "circle"    "disk"      "oval"     
  [409] "unknown"   "fireball"  "light"     "diamond"   "light"     "formation"
  [415] "circle"    "light"     "triangle"  "oval"      "oval"      "cylinder" 
  [421] "circle"    "unknown"   "triangle"  "sphere"    "light"     "disk"     
  [427] "unknown"   "chevron"   "unknown"   "disk"      "light"     "sphere"   
  [433] "cylinder"  "circle"    "sphere"    "light"     "triangle"  "light"    
  [439] "changing"  "fireball"  "triangle"  "unknown"   "other"     "light"    
  [445] "flash"     "triangle"  "egg"       "disk"      "disk"      "oval"     
  [451] "circle"    "flash"     "light"     "other"     "rectangle" "oval"     
  [457] "sphere"    "changing"  "light"     "circle"    "triangle"  "other"    
  [463] "fireball"  "chevron"   "other"     "light"     "light"     "circle"   
  [469] NA          "circle"    "unknown"   "unknown"   "sphere"    "light"    
  [475] "disk"      "disk"      "cigar"     "unknown"   "light"     "fireball" 
  [481] "circle"    "diamond"   "fireball"  "triangle"  "diamond"   "sphere"   
  [487] "circle"    "unknown"   "chevron"   "cylinder"  "circle"    "light"    
  [493] "circle"    "fireball"  "unknown"   "light"     "fireball"  "light"    
  [499] "light"     "changing"  "circle"    "fireball"  "light"     "unknown"  
  [505] "light"     "fireball"  "fireball"  "fireball"  "light"     "sphere"   
  [511] "chevron"   "light"     "sphere"    "sphere"    "formation" "light"    
  [517] "changing"  "fireball"  "fireball"  "disk"      "disk"      "disk"     
  [523] "circle"    "circle"    "rectangle" "unknown"   "cigar"     "disk"     
  [529] NA          "other"     "unknown"   NA          "sphere"    "disk"     
  [535] "disk"      "triangle"  "disk"      "other"     "sphere"    "disk"     
  [541] "diamond"   "light"     "light"     "unknown"   "disk"      "sphere"   
  [547] "circle"    "sphere"    "disk"      "cigar"     "circle"    "circle"   
  [553] "oval"      "light"     "sphere"    "disk"      "other"     "oval"     
  [559] "other"     "disk"      "light"     "disk"      "unknown"   "unknown"  
  [565] "disk"      "rectangle" "chevron"   "unknown"   "sphere"    "disk"     
  [571] "light"     "triangle"  "cylinder"  "disk"      "oval"      "disk"     
  [577] "unknown"   "sphere"    "changing"  "unknown"   "light"     "sphere"   
  [583] "triangle"  "changing"  "disk"      "disk"      "disk"      "light"    
  [589] "other"     "other"     "cone"      "disk"      "cylinder"  "circle"   
  [595] "disk"      "rectangle" "light"     "disk"      "disk"      "light"    
  [601] "other"     "fireball"  "formation" "cigar"     "disk"      "oval"     
  [607] "disk"      "unknown"   "fireball"  "sphere"    "unknown"   "oval"     
  [613] "disk"      "light"     "light"     "triangle"  "triangle"  "light"    
  [619] "sphere"    "triangle"  "other"     "sphere"    "circle"    "triangle" 
  [625] "light"     NA          "sphere"    "oval"      "fireball"  "triangle" 
  [631] NA          "disk"      "circle"    "oval"      "circle"    "oval"     
  [637] "rectangle" "disk"      "oval"      "light"     "light"     "other"    
  [643] "circle"    "cigar"     "triangle"  "unknown"   "disk"      "cigar"    
  [649] "other"     "sphere"    "triangle"  "egg"       "unknown"   "cross"    
  [655] "triangle"  "light"     "light"     "triangle"  "disk"      "changing" 
  [661] "changing"  "triangle"  "cigar"     "circle"    "disk"      NA         
  [667] NA          NA          "disk"      "rectangle" "light"     "light"    
  [673] NA          "other"     "triangle"  NA          NA          "triangle" 
  [679] "sphere"    "formation" "triangle"  "oval"      "sphere"    "sphere"   
  [685] "fireball"  "triangle"  "other"     "rectangle" "other"     "rectangle"
  [691] "cigar"     "light"     "triangle"  "triangle"  "triangle"  "light"    
  [697] "other"     "triangle"  "light"     "triangle"  "light"     "fireball" 
  [703] "disk"      "fireball"  "light"     "disk"      "sphere"    "disk"     
  [709] "fireball"  "fireball"  "oval"      "triangle"  "triangle"  "fireball" 
  [715] "formation" "triangle"  "triangle"  "other"     "fireball"  "light"    
  [721] "light"     "triangle"  "unknown"   "cigar"     "light"     "light"    
  [727] "unknown"   "formation" "chevron"   "formation" "formation" "disk"     
  [733] "cigar"     "disk"      "light"     "sphere"    "cigar"     "unknown"  
  [739] "unknown"   "triangle"  "triangle"  "triangle"  "other"     "light"    
  [745] "light"     "light"     "triangle"  "diamond"   NA          "light"    
  [751] "triangle"  "oval"      "triangle"  "changing"  "light"     "flash"    
  [757] "triangle"  "other"     "circle"    "formation" "teardrop"  "oval"     
  [763] "other"     "fireball"  "sphere"    "circle"    "triangle"  "unknown"  
  [769] "teardrop"  "other"     "unknown"   "fireball"  "light"     "light"    
  [775] "light"     "cigar"     "egg"       "cigar"     "cross"     "other"    
  [781] "teardrop"  "fireball"  "fireball"  "other"     "egg"       "light"    
  [787] "other"     "unknown"   "unknown"   "changing"  "circle"    "light"    
  [793] "unknown"   "other"     "unknown"   "triangle"  "cigar"     "unknown"  
  [799] "light"     "sphere"    "other"     "circle"    "other"     "light"    
  [805] "light"     "light"     "circle"    "unknown"   "cylinder"  "oval"     
  [811] "triangle"  "unknown"   "other"     "fireball"  "sphere"    "circle"   
  [817] "light"     "light"     "circle"    "light"     "diamond"   "circle"   
  [823] "light"     "light"     "light"     "light"     "changing"  "light"    
  [829] "formation" "circle"    "circle"    "formation" "triangle"  "triangle" 
  [835] "triangle"  "triangle"  "light"     "light"     "light"     "light"    
  [841] "other"     "changing"  "triangle"  "cylinder"  "light"     "unknown"  
  [847] "triangle"  "light"     "circle"    "light"     "circle"    "disk"     
  [853] "sphere"    "oval"      "formation" "teardrop"  "triangle"  "triangle" 
  [859] "light"     "chevron"   "light"     "unknown"   "unknown"   "light"    
  [865] "light"     "changing"  "unknown"   "other"     "light"     "chevron"  
  [871] "oval"      "oval"      "teardrop"  "circle"    "other"     "triangle" 
  [877] NA          "cross"     "rectangle" "circle"    "oval"      "cigar"    
  [883] "other"     "unknown"   "chevron"   "disk"      "oval"      "fireball" 
  [889] NA          "fireball"  "fireball"  "circle"    "teardrop"  "unknown"  
  [895] "unknown"   "light"     "sphere"    "changing"  "fireball"  "light"    
  [901] "fireball"  NA          "changing"  "light"     "cylinder"  "oval"     
  [907] "light"     "changing"  "circle"    "formation" "unknown"   "fireball" 
  [913] "light"     "sphere"    "light"     "formation" "circle"    "sphere"   
  [919] "fireball"  "light"     "formation" "formation" "formation" "light"    
  [925] "other"     "light"     "light"     "circle"    "diamond"   "flash"    
  [931] "oval"      "circle"    "oval"      "light"     "unknown"   "light"    
  [937] "oval"      "sphere"    "triangle"  "unknown"   "light"     "disk"     
  [943] "light"     "unknown"   "other"     "triangle"  "flash"     "triangle" 
  [949] "disk"      "cylinder"  "disk"      "cylinder"  "light"     "oval"     
  [955] "fireball"  "light"     "oval"      "cigar"     "circle"    "egg"      
  [961] "disk"      "light"     "unknown"   "circle"    "other"     "circle"   
  [967] "light"     "light"     "light"     "light"     "unknown"   "unknown"  
  [973] "triangle"  "sphere"    "other"     "triangle"  "light"     "disk"     
  [979] "cylinder"  "triangle"  "oval"      "light"     "oval"      "sphere"   
  [985] "disk"      "light"     "triangle"  "circle"    "light"     "other"    
  [991] "other"     "light"     "unknown"   "triangle"  "other"     "circle"   
  [997] "unknown"   "sphere"    "disk"      "other"     "cigar"     "light"    
 [1003] "triangle"  "oval"      "oval"      "changing"  "unknown"   "light"    
 [1009] "circle"    "unknown"   "light"     "other"     "unknown"   "triangle" 
 [1015] "unknown"   "circle"    "unknown"   "oval"      "cigar"     "unknown"  
 [1021] "unknown"   "triangle"  "sphere"    "light"     "light"     "fireball" 
 [1027] "fireball"  "fireball"  "light"     "rectangle" "chevron"   "light"    
 [1033] "light"     "light"     "fireball"  "unknown"   "formation" "unknown"  
 [1039] "light"     "light"     "formation" "circle"    "other"     "fireball" 
 [1045] "light"     "oval"      "fireball"  "light"     "fireball"  "other"    
 [1051] "unknown"   "light"     "triangle"  "fireball"  "triangle"  "triangle" 
 [1057] "flash"     "circle"    "other"     "disk"      "fireball"  "triangle" 
 [1063] "unknown"   "unknown"   "light"     "light"     "unknown"   "sphere"   
 [1069] "light"     "light"     "fireball"  "circle"    "unknown"   "triangle" 
 [1075] "fireball"  "fireball"  "unknown"   "circle"    "disk"      "other"    
 [1081] "chevron"   "disk"      "fireball"  "disk"      "disk"      "triangle" 
 [1087] "circle"    "rectangle" "light"     "light"     "disk"      "cigar"    
 [1093] "other"     "chevron"   "disk"      "triangle"  "other"     "sphere"   
 [1099] "light"     "disk"      "light"     "other"     "other"     "egg"      
 [1105] "light"     "fireball"  "light"     "triangle"  "fireball"  "oval"     
 [1111] "disk"      "fireball"  "cigar"     "triangle"  "chevron"   "triangle" 
 [1117] "fireball"  "other"     "formation" "fireball"  "other"     "formation"
 [1123] "disk"      "disk"      "cigar"     "light"     "oval"      "unknown"  
 [1129] "fireball"  "light"     "light"     "circle"    "disk"      "light"    
 [1135] "disk"      "formation" "other"     "triangle"  "other"     "light"    
 [1141] "disk"      "circle"    "cone"      "unknown"   "light"     "formation"
 [1147] "disk"      "other"     "light"     "light"     "triangle"  "light"    
 [1153] "triangle"  "triangle"  "circle"    "unknown"   "circle"    "fireball" 
 [1159] "other"     "other"     "other"     "circle"    "sphere"    "light"    
 [1165] "disk"      "sphere"    "formation" "other"     "light"     "cylinder" 
 [1171] "light"     "sphere"    "sphere"    "cylinder"  "light"     "light"    
 [1177] "fireball"  "triangle"  "circle"    "fireball"  "oval"      "formation"
 [1183] "light"     "flash"     "circle"    "light"     "oval"      "light"    
 [1189] "sphere"    "triangle"  "changing"  "unknown"   "sphere"    "oval"     
 [1195] "formation" "sphere"    "unknown"   "light"     "triangle"  "triangle" 
 [1201] "formation" "light"     "formation" "sphere"    "oval"      "unknown"  
 [1207] "disk"      "circle"    NA          "circle"    "oval"      "formation"
 [1213] "unknown"   "triangle"  "fireball"  "light"     "cigar"     "light"    
 [1219] "diamond"   "disk"      "other"     "circle"    "cylinder"  "light"    
 [1225] "light"     "changing"  "light"     "triangle"  "light"     "changing" 
 [1231] "circle"    "unknown"   "unknown"   "formation" "light"     "unknown"  
 [1237] "light"     "flash"     "light"     "triangle"  "cigar"     "light"    
 [1243] "other"     "other"     "oval"      "triangle"  "circle"    "sphere"   
 [1249] "cigar"     "chevron"   "rectangle" "disk"      "chevron"   "circle"   
 [1255] "changing"  "light"     "light"     "changing"  "fireball"  "circle"   
 [1261] "light"     "disk"      "unknown"   "triangle"  "light"     "fireball" 
 [1267] "unknown"   "rectangle" "circle"    "sphere"    "circle"    "cylinder" 
 [1273] "light"     "oval"      "other"     "light"     NA          "chevron"  
 [1279] "cylinder"  "changing"  "light"     "chevron"   "light"     "sphere"   
 [1285] "circle"    NA          "sphere"    "fireball"  "light"     "fireball" 
 [1291] "triangle"  "unknown"   "circle"    "light"     "changing"  "circle"   
 [1297] "unknown"   "light"     "triangle"  "fireball"  "disk"      "other"    
 [1303] "formation" "triangle"  "changing"  "light"     "other"     "oval"     
 [1309] "formation" "light"     "triangle"  "light"     "sphere"    "formation"
 [1315] "triangle"  "light"     "fireball"  "circle"    "unknown"   "light"    
 [1321] "fireball"  "formation" "unknown"   "formation" "light"     "sphere"   
 [1327] "diamond"   "diamond"   "circle"    "other"     "sphere"    "circle"   
 [1333] "light"     "fireball"  "formation" "fireball"  "sphere"    "disk"     
 [1339] "disk"      "formation" "formation" "disk"      "oval"      "sphere"   
 [1345] "triangle"  "cylinder"  NA          "light"     NA          "light"    
 [1351] "triangle"  "circle"    "circle"    "diamond"   "triangle"  "other"    
 [1357] "circle"    "other"     "light"     "light"     "changing"  "oval"     
 [1363] "unknown"   "disk"      "triangle"  "other"     "light"     "circle"   
 [1369] "circle"    "other"     "other"     "fireball"  "fireball"  "other"    
 [1375] "cylinder"  "triangle"  "fireball"  "unknown"   "cylinder"  "fireball" 
 [1381] "unknown"   "light"     "fireball"  "fireball"  "light"     "chevron"  
 [1387] "fireball"  "light"     "triangle"  "cigar"     "cigar"     "triangle" 
 [1393] "light"     "triangle"  "circle"    "light"     "triangle"  "fireball" 
 [1399] "cylinder"  "disk"      "light"     "changing"  "oval"      "triangle" 
 [1405] NA          "cigar"     "light"     "triangle"  "fireball"  "oval"     
 [1411] "changing"  "unknown"   "disk"      "sphere"    "unknown"   "sphere"   
 [1417] "light"     "light"     "chevron"   "other"     "other"     "triangle" 
 [1423] "disk"      "light"     "rectangle" "cigar"     "light"     "unknown"  
 [1429] "fireball"  "light"     "oval"      "disk"      "light"     "light"    
 [1435] "circle"    "circle"    "chevron"   "triangle"  "rectangle" "triangle" 
 [1441] "circle"    "light"     "chevron"   "disk"      "cylinder"  "cylinder" 
 [1447] "light"     "light"     "other"     "changing"  "light"     "chevron"  
 [1453] "rectangle" "other"     "fireball"  "cylinder"  "circle"    "light"    
 [1459] "changing"  "disk"      "unknown"   "light"     "oval"      "triangle" 
 [1465] "triangle"  "light"     "triangle"  "unknown"   "triangle"  "formation"
 [1471] "fireball"  "triangle"  "changing"  "sphere"    "light"     "cigar"    
 [1477] "cigar"     "fireball"  "light"     "cylinder"  "circle"    "disk"     
 [1483] "unknown"   "sphere"    "light"     "light"     "other"     "circle"   
 [1489] "unknown"   NA          "disk"      "light"     "light"     "circle"   
 [1495] "light"     "triangle"  "light"     "light"     "sphere"    "triangle" 
 [1501] "flash"     "cross"     "light"     "circle"    "triangle"  "cylinder" 
 [1507] "sphere"    "cross"     "chevron"   "chevron"   "light"     "unknown"  
 [1513] "flash"     "circle"    "circle"    "other"     "other"     "chevron"  
 [1519] "triangle"  "light"     "light"     "sphere"    "unknown"   "cylinder" 
 [1525] "flash"     "changing"  "oval"      "light"     "unknown"   "light"    
 [1531] "triangle"  "oval"      "triangle"  "formation" "unknown"   "fireball" 
 [1537] "diamond"   "light"     "other"     "circle"    "sphere"    NA         
 [1543] "light"     "fireball"  "changing"  "other"     "sphere"    "other"    
 [1549] "circle"    "triangle"  "other"     "sphere"    "unknown"   "oval"     
 [1555] "rectangle" "triangle"  "light"     "oval"      "oval"      "circle"   
 [1561] "oval"      "circle"    "light"     "oval"      "cylinder"  "circle"   
 [1567] "fireball"  "oval"      "triangle"  "fireball"  "circle"    "unknown"  
 [1573] "light"     "fireball"  "circle"    "light"     "light"     "circle"   
 [1579] "light"     "sphere"    "unknown"   "fireball"  "circle"    NA         
 [1585] "sphere"    "formation" "light"     "fireball"  "light"     "circle"   
 [1591] "fireball"  "circle"    "diamond"   "flash"     "light"     "light"    
 [1597] "unknown"   "sphere"    "unknown"   "circle"    "unknown"   "light"    
 [1603] "triangle"  "light"     "light"     "light"     "changing"  "sphere"   
 [1609] "sphere"    "triangle"  "circle"    "other"     NA          "diamond"  
 [1615] NA          "disk"      "light"     "oval"      "changing"  "sphere"   
 [1621] "circle"    NA          "triangle"  NA          NA          NA         
 [1627] NA          NA          NA          "circle"    "unknown"   "light"    
 [1633] "chevron"   "sphere"    "other"     "fireball"  "oval"      "light"    
 [1639] "light"     "light"     "triangle"  "light"     "circle"    "light"    
 [1645] "triangle"  "unknown"   "unknown"   "cigar"     "circle"    "unknown"  
 [1651] "rectangle" "sphere"    "unknown"   "other"     "circle"    "other"    
 [1657] "diamond"   "other"     "circle"    "chevron"   "light"     "triangle" 
 [1663] "light"     "triangle"  "triangle"  "light"     "oval"      "disk"     
 [1669] "other"     "light"     "unknown"   "circle"    "light"     "unknown"  
 [1675] "circle"    "circle"    NA          "light"     "fireball"  "fireball" 
 [1681] "fireball"  "fireball"  "fireball"  "fireball"  "chevron"   "light"    
 [1687] "changing"  "fireball"  "light"     "circle"    "disk"      "sphere"   
 [1693] "other"     "unknown"   "oval"      "unknown"   "circle"    "cone"     
 [1699] "circle"    "light"     "oval"      "cylinder"  "triangle"  "light"    
 [1705] "triangle"  "formation" "oval"      "oval"      "other"     "unknown"  
 [1711] "light"     NA          "changing"  "light"     "formation" "sphere"   
 [1717] "triangle"  "sphere"    "other"     "circle"    "sphere"    "light"    
 [1723] "egg"       "light"     "light"     "unknown"   "triangle"  "fireball" 
 [1729] "fireball"  "formation" "fireball"  "teardrop"  "sphere"    "circle"   
 [1735] "fireball"  "light"     "light"     "changing"  NA          "unknown"  
 [1741] "circle"    "light"     "unknown"   "cigar"     "light"     "light"    
 [1747] "circle"    "oval"      "changing"  "other"     "triangle"  "other"    
 [1753] "disk"      "sphere"    "formation" "formation" "egg"       "sphere"   
 [1759] "light"     "disk"      "formation" "cigar"     "chevron"   "light"    
 [1765] "disk"      "circle"    "other"     "circle"    "changing"  "formation"
 [1771] "cross"     "light"     "oval"      "fireball"  "rectangle" "light"    
 [1777] "formation" "circle"    "flash"     "cylinder"  "circle"    "light"    
 [1783] "egg"       "triangle"  "light"     "triangle"  "other"     "other"    
 [1789] "light"     "unknown"   "triangle"  "other"     "other"     "formation"
 [1795] "triangle"  "triangle"  "triangle"  "triangle"  "other"     "sphere"   
 [1801] "other"     "cylinder"  "circle"    "flash"     "unknown"   "oval"     
 [1807] "oval"      "oval"      "changing"  "light"     "other"     "light"    
 [1813] "light"     NA          "sphere"    "triangle"  "other"     "light"    
 [1819] "circle"    "diamond"   "diamond"   "circle"    "egg"       "formation"
 [1825] "cylinder"  "light"     "triangle"  "light"     "formation" "fireball" 
 [1831] "light"     "circle"    "unknown"   "unknown"   "unknown"   "light"    
 [1837] "circle"    "changing"  "changing"  "light"     "triangle"  "circle"   
 [1843] "flash"     "cylinder"  "rectangle" "sphere"    "sphere"    "sphere"   
 [1849] "cigar"     "light"     "light"     "light"     "sphere"    "light"    
 [1855] "disk"      "circle"    "light"     "circle"    "triangle"  "rectangle"
 [1861] "unknown"   "circle"    "cigar"     "rectangle" "circle"    "cigar"    
 [1867] "triangle"  "disk"      "circle"    "cylinder"  "disk"      "other"    
 [1873] "circle"    "light"     "unknown"   "disk"      "disk"      NA         
 [1879] "light"     "fireball"  "other"     "oval"      "other"     NA         
 [1885] "cigar"     "sphere"    "oval"      "circle"    "disk"      "disk"     
 [1891] "oval"      "triangle"  NA          "circle"    "cigar"     "oval"     
 [1897] "light"     "disk"      "fireball"  "light"     "unknown"   "triangle" 
 [1903] "cigar"     "light"     "circle"    "light"     "oval"      "oval"     
 [1909] "cigar"     "cigar"     "circle"    "disk"      "changing"  "cigar"    
 [1915] "disk"      "unknown"   "unknown"   "light"     "disk"      "circle"   
 [1921] "disk"      "formation" "oval"      "disk"      "other"     "circle"   
 [1927] "disk"      "light"     "disk"      "circle"    "disk"      "flash"    
 [1933] "light"     "cigar"     "cigar"     "oval"      "light"     "other"    
 [1939] "disk"      "disk"      "circle"    "changing"  "sphere"    "disk"     
 [1945] "light"     "circle"    "disk"      "disk"      "disk"      "other"    
 [1951] "other"     "circle"    "triangle"  "light"     "disk"      "unknown"  
 [1957] "light"     "unknown"   "triangle"  "disk"      "light"     "disk"     
 [1963] "disk"      "oval"      "circle"    "light"     "light"     "oval"     
 [1969] "circle"    "other"     "unknown"   "unknown"   "circle"    "fireball" 
 [1975] "triangle"  "sphere"    "disk"      "rectangle" "cylinder"  "sphere"   
 [1981] "oval"      "sphere"    "triangle"  "egg"       "cigar"     "disk"     
 [1987] "disk"      "disk"      "oval"      "unknown"   "circle"    "rectangle"
 [1993] "disk"      "chevron"   "rectangle" "disk"      "chevron"   "rectangle"
 [1999] "triangle"  "disk"      "disk"      "cigar"     "other"     "unknown"  
 [2005] "disk"      "disk"      "circle"    "circle"    "egg"       "disk"     
 [2011] "diamond"   "other"     "triangle"  "disk"      "cylinder"  "cigar"    
 [2017] "circle"    "oval"      "disk"      "disk"      "disk"      "disk"     
 [2023] "diamond"   "fireball"  "triangle"  "disk"      "triangle"  "circle"   
 [2029] "circle"    "other"     "rectangle" "triangle"  "light"     "circle"   
 [2035] "triangle"  "circle"    "circle"    "circle"    "triangle"  NA         
 [2041] "cigar"     "unknown"   "chevron"   "circle"    "light"     "other"    
 [2047] "cylinder"  "cigar"     "triangle"  "disk"      "sphere"    "triangle" 
 [2053] "unknown"   "oval"      "formation" "fireball"  "light"     "light"    
 [2059] "cigar"     "sphere"    "circle"    "triangle"  "other"     "disk"     
 [2065] "sphere"    "light"     "light"     "cigar"     "light"     "light"    
 [2071] "sphere"    "sphere"    NA          "oval"      "rectangle" "light"    
 [2077] "sphere"    "disk"      "oval"      "disk"      NA          "light"    
 [2083] "sphere"    "fireball"  "triangle"  "disk"      "teardrop"  NA         
 [2089] "light"     "other"     "disk"      "light"     "diamond"   "cigar"    
 [2095] "sphere"    "unknown"   NA          "light"     "fireball"  "unknown"  
 [2101] "light"     NA          "fireball"  "fireball"  "light"     "triangle" 
 [2107] "unknown"   "triangle"  "other"     "sphere"    NA          "triangle" 
 [2113] "light"     "unknown"   "light"     "other"     "fireball"  "oval"     
 [2119] "light"     "cylinder"  "rectangle" "light"     "triangle"  "triangle" 
 [2125] "light"     "sphere"    "triangle"  "light"     "unknown"   "circle"   
 [2131] "light"     "chevron"   "flash"     "unknown"   "triangle"  "unknown"  
 [2137] "sphere"    "triangle"  "flash"     "egg"       "fireball"  "cylinder" 
 [2143] "changing"  "sphere"    "disk"      "other"     "light"     "fireball" 
 [2149] "light"     "triangle"  "unknown"   "light"     "light"     "diamond"  
 [2155] "triangle"  "disk"      "formation" "fireball"  "triangle"  "light"    
 [2161] "light"     "triangle"  "triangle"  "oval"      "light"     "light"    
 [2167] "disk"      "disk"      "diamond"   "circle"    "sphere"    "other"    
 [2173] "light"     "triangle"  "other"     NA          "chevron"   "light"    
 [2179] "oval"      "chevron"   "sphere"    "triangle"  "triangle"  "triangle" 
 [2185] "unknown"   "triangle"  "fireball"  "circle"    "circle"    "fireball" 
 [2191] "sphere"    "egg"       "light"     "oval"      "unknown"   "unknown"  
 [2197] "egg"       NA          "cigar"     "triangle"  "light"     "diamond"  
 [2203] "light"     "disk"      "egg"       "circle"    "triangle"  "cigar"    
 [2209] "triangle"  "oval"      NA          "other"     "light"     "triangle" 
 [2215] "formation" "sphere"    "circle"    "disk"      "sphere"    "triangle" 
 [2221] "other"     "changing"  "circle"    "triangle"  "sphere"    "formation"
 [2227] "triangle"  "teardrop"  "circle"    "circle"    "circle"    "cylinder" 
 [2233] "circle"    "fireball"  "fireball"  "fireball"  "fireball"  "fireball" 
 [2239] "fireball"  "light"     "unknown"   "egg"       "light"     "unknown"  
 [2245] "triangle"  "sphere"    "other"     "fireball"  "formation" "rectangle"
 [2251] "cigar"     "cigar"     "cigar"     "unknown"   "sphere"    "chevron"  
 [2257] "chevron"   "light"     "light"     "light"     "triangle"  "light"    
 [2263] NA          "sphere"    NA          "triangle"  "light"     "triangle" 
 [2269] "light"     "oval"      "triangle"  "changing"  "disk"      "circle"   
 [2275] "disk"      "disk"      "cigar"     "circle"    "unknown"   "unknown"  
 [2281] "cigar"     "disk"      "light"     "changing"  "disk"      "light"    
 [2287] "circle"    "diamond"   "unknown"   "circle"    "fireball"  "cigar"    
 [2293] "light"     "light"     "light"     "fireball"  "unknown"   "light"    
 [2299] "cone"      "unknown"   "triangle"  "light"     "triangle"  "cigar"    
 [2305] "flash"     "other"     "unknown"   "flash"     "changing"  "other"    
 [2311] "rectangle" "formation" "chevron"   "light"     "light"     "light"    
 [2317] "disk"      "sphere"    "circle"    "light"     "formation" "formation"
 [2323] "light"     "triangle"  "circle"    "oval"      "light"     "sphere"   
 [2329] "flash"     "cigar"     NA          "unknown"   "egg"       "formation"
 [2335] "changing"  "other"     "other"     "other"     "light"     "sphere"   
 [2341] "cylinder"  "light"     "sphere"    "light"     "other"     "light"    
 [2347] "sphere"    "light"     "disk"      "oval"      "fireball"  "circle"   
 [2353] "circle"    "other"     "circle"    "teardrop"  "oval"      "light"    
 [2359] "circle"    "oval"      "light"     NA          "triangle"  "fireball" 
 [2365] "sphere"    "unknown"   "unknown"   "sphere"    "circle"    "sphere"   
 [2371] "teardrop"  "disk"      "unknown"   "light"     "fireball"  "light"    
 [2377] "light"     "formation" "other"     "light"     "circle"    "disk"     
 [2383] "triangle"  "sphere"    "light"     "diamond"   "disk"      "disk"     
 [2389] "other"     "other"     "other"     "oval"      "teardrop"  "formation"
 [2395] "triangle"  "triangle"  "rectangle" "unknown"   "unknown"   "chevron"  
 [2401] "unknown"   "light"     "oval"      "disk"      "other"     "changing" 
 [2407] "other"     "teardrop"  "light"     "triangle"  "light"     "cylinder" 
 [2413] "light"     "triangle"  "flash"     "flash"     NA          "light"    
 [2419] "circle"    "sphere"    "sphere"    "cigar"     "other"     "disk"     
 [2425] "disk"      "light"     "light"     "changing"  NA          "unknown"  
 [2431] "teardrop"  "unknown"   "fireball"  "fireball"  "light"     "circle"   
 [2437] "sphere"    "light"     "disk"      "disk"      "circle"    "light"    
 [2443] "light"     "circle"    "circle"    "oval"      "rectangle" "formation"
 [2449] "triangle"  "light"     "chevron"   "triangle"  "changing"  "other"    
 [2455] "light"     "light"     "light"     "light"     "fireball"  "circle"   
 [2461] "circle"    "changing"  "light"     "oval"      "unknown"   "circle"   
 [2467] "disk"      "rectangle" "unknown"   "cigar"     "cylinder"  "formation"
 [2473] "disk"      "other"     "light"     "formation" "flash"     "other"    
 [2479] "triangle"  "sphere"    "unknown"   "disk"      "fireball"  "light"    
 [2485] "disk"      "circle"    "changing"  "unknown"   "chevron"   "other"    
 [2491] "light"     "sphere"    "disk"      "flash"     "light"     "other"    
 [2497] "triangle"  NA          "circle"    "sphere"    "cylinder"  "triangle" 
 [2503] "disk"      "triangle"  "oval"      "sphere"    "disk"      "disk"     
 [2509] NA          "sphere"    "fireball"  "light"     "light"     "triangle" 
 [2515] "cone"      "changing"  "light"     "other"     "unknown"   "light"    
 [2521] "sphere"    "disk"      "sphere"    "other"     "disk"      "triangle" 
 [2527] "light"     "triangle"  "oval"      "sphere"    "fireball"  "light"    
 [2533] "unknown"   "triangle"  "disk"      "unknown"   "unknown"   "triangle" 
 [2539] "triangle"  "light"     "chevron"   "triangle"  "changing"  "cigar"    
 [2545] "other"     "cigar"     "disk"      "fireball"  "oval"      "flash"    
 [2551] "formation" "unknown"   "triangle"  "light"     "light"     "oval"     
 [2557] "light"     "other"     "light"     "egg"       "diamond"   "other"    
 [2563] "formation" "light"     "light"     NA          "other"     "triangle" 
 [2569] "unknown"   "light"     "light"     "unknown"   "unknown"   "changing" 
 [2575] "light"     "unknown"   "light"     "light"     "unknown"   "changing" 
 [2581] "disk"      "flash"     "circle"    "fireball"  "unknown"   "light"    
 [2587] "oval"      "light"     "circle"    "circle"    "unknown"   "cylinder" 
 [2593] "triangle"  "triangle"  "other"     "oval"      NA          "light"    
 [2599] "formation" "oval"      "circle"    "light"     "disk"      "light"    
 [2605] "other"     "oval"      "flash"     "cone"      "circle"    "light"    
 [2611] "light"     NA          "sphere"    "light"     "disk"      "triangle" 
 [2617] "fireball"  "oval"      "light"     "other"     "light"     "rectangle"
 [2623] "chevron"   "oval"      "light"     "fireball"  "other"     "light"    
 [2629] "unknown"   "fireball"  "triangle"  "light"     "unknown"   "light"    
 [2635] "unknown"   "triangle"  "light"     "changing"  "light"     "circle"   
 [2641] "triangle"  "circle"    "light"     "triangle"  "light"     "light"    
 [2647] "light"     "other"     "other"     "circle"    NA          "sphere"   
 [2653] "sphere"    "sphere"    "sphere"    "sphere"    "oval"      "changing" 
 [2659] "unknown"   "light"     "cigar"     "formation" "circle"    "fireball" 
 [2665] "cylinder"  "oval"      "disk"      "triangle"  "oval"      "sphere"   
 [2671] "diamond"   "circle"    "unknown"   "circle"    "triangle"  "circle"   
 [2677] "oval"      "unknown"   "light"     "chevron"   "circle"    "unknown"  
 [2683] "oval"      "teardrop"  "triangle"  "light"     "light"     "flash"    
 [2689] "cylinder"  "cylinder"  "cylinder"  "cylinder"  "sphere"    "cylinder" 
 [2695] "triangle"  "cylinder"  "circle"    "light"     "egg"       "sphere"   
 [2701] "light"     "other"     "sphere"    "triangle"  "fireball"  "rectangle"
 [2707] "light"     "light"     "triangle"  "triangle"  "light"     "formation"
 [2713] "cigar"     "formation" "light"     "oval"      "unknown"   "circle"   
 [2719] "circle"    "cylinder"  "fireball"  "other"     "circle"    "egg"      
 [2725] "other"     "formation" "circle"    NA          "disk"      "disk"     
 [2731] "circle"    "disk"      "light"     "circle"    "disk"      "other"    
 [2737] "chevron"   "triangle"  "triangle"  "flash"     "triangle"  "disk"     
 [2743] "light"     "triangle"  "fireball"  "other"     NA          NA         
 [2749] NA          "triangle"  "flash"     "light"     "light"     "other"    
 [2755] "sphere"    "fireball"  "other"     "cigar"     "fireball"  "teardrop" 
 [2761] "cigar"     "chevron"   "chevron"   "changing"  "cylinder"  "light"    
 [2767] "other"     "light"     "diamond"   "light"     "diamond"   "fireball" 
 [2773] "sphere"    "other"     "formation" "circle"    "light"     "triangle" 
 [2779] "changing"  "light"     "circle"    "circle"    "light"     "light"    
 [2785] "unknown"   "egg"       "diamond"   "circle"    "unknown"   "sphere"   
 [2791] "unknown"   "other"     "light"     "sphere"    "oval"      "unknown"  
 [2797] "circle"    "triangle"  "light"     "triangle"  "circle"    "unknown"  
 [2803] "other"     "light"     "circle"    "triangle"  "unknown"   "unknown"  
 [2809] "changing"  "formation" "light"     "circle"    "formation" "other"    
 [2815] "light"     "unknown"   "light"     "formation" NA          "light"    
 [2821] "other"     "cross"     "diamond"   "other"     "changing"  "circle"   
 [2827] "light"     "triangle"  "light"     "oval"      "disk"      "egg"      
 [2833] "light"     "light"     "light"     "sphere"    "chevron"   "light"    
 [2839] "light"     "fireball"  "other"     "oval"      "circle"    "cross"    
 [2845] "triangle"  "triangle"  "disk"      "light"     "triangle"  "oval"     
 [2851] "unknown"   "circle"    "sphere"    "disk"      "sphere"    "unknown"  
 [2857] NA          "changing"  "other"     "light"     "other"     "light"    
 [2863] "circle"    "light"     "oval"      "light"     "circle"    "light"    
 [2869] "other"     "formation" "triangle"  "light"     "light"     "cigar"    
 [2875] "sphere"    "sphere"    "light"     "circle"    "light"     "chevron"  
 [2881] "sphere"    "fireball"  "triangle"  "triangle"  "light"     "light"    
 [2887] "unknown"   "disk"      "light"     "light"     "light"     "triangle" 
 [2893] "fireball"  "circle"    "circle"    "triangle"  "sphere"    "light"    
 [2899] "light"     "light"     "light"     "light"     "changing"  "disk"     
 [2905] "oval"      "formation" "light"     "oval"      "triangle"  "triangle" 
 [2911] "triangle"  "light"     "light"     "unknown"   "circle"    "other"    
 [2917] "disk"      "changing"  "light"     "light"     "disk"      "unknown"  
 [2923] "unknown"   "disk"      "oval"      "light"     "light"     "sphere"   
 [2929] "flash"     "unknown"   "light"     "circle"    "circle"    "unknown"  
 [2935] "sphere"    NA          "cigar"     "other"     "circle"    "other"    
 [2941] "unknown"   "other"     "disk"      "light"     "light"     "circle"   
 [2947] "fireball"  "light"     "circle"    "light"     "light"     "oval"     
 [2953] "changing"  NA          "oval"      "disk"      "circle"    "oval"     
 [2959] "cigar"     "disk"      "light"     "oval"      "disk"      "diamond"  
 [2965] "disk"      "changing"  "chevron"   NA          "unknown"   "unknown"  
 [2971] "sphere"    "sphere"    "light"     "light"     "light"     "light"    
 [2977] "fireball"  "chevron"   NA          "unknown"   "light"     "circle"   
 [2983] "other"     "circle"    "other"     "fireball"  "circle"    "unknown"  
 [2989] "light"     "light"     "light"     "light"     "circle"    "other"    
 [2995] "sphere"    "rectangle" "disk"      "triangle"  "other"     "unknown"  
 [3001] "unknown"   "light"     "unknown"   "other"     "light"     "sphere"   
 [3007] "light"     "sphere"    "changing"  "changing"  "disk"      "rectangle"
 [3013] "circle"    "cigar"     "sphere"    "circle"    "disk"      "circle"   
 [3019] "light"     "other"     "other"     "diamond"   "unknown"   "unknown"  
 [3025] "circle"    "unknown"   "light"     "sphere"    "light"     "chevron"  
 [3031] "fireball"  "fireball"  "sphere"    "fireball"  "circle"    "unknown"  
 [3037] "light"     "light"     "teardrop"  "egg"       "formation" "sphere"   
 [3043] "light"     "triangle"  "other"     "fireball"  "circle"    "cylinder" 
 [3049] "light"     "other"     "formation" "circle"    "light"     "changing" 
 [3055] "sphere"    "cylinder"  "other"     "other"     "cigar"     "other"    
 [3061] "triangle"  "light"     "teardrop"  "light"     "light"     "triangle" 
 [3067] "triangle"  "circle"    "light"     "triangle"  "other"     "light"    
 [3073] "light"     "sphere"    "sphere"    "light"     "disk"      "oval"     
 [3079] "light"     "unknown"   "light"     "flash"     "light"     "light"    
 [3085] "changing"  "diamond"   "formation" "circle"    "unknown"   "diamond"  
 [3091] "unknown"   "circle"    "light"     "light"     "circle"    "other"    
 [3097] "circle"    "circle"    "triangle"  "triangle"  "light"     "unknown"  
 [3103] NA          "rectangle" "changing"  "triangle"  "disk"      "formation"
 [3109] "other"     "cylinder"  "sphere"    "light"     "light"     "sphere"   
 [3115] "oval"      "disk"      "oval"      "other"     "formation" "triangle" 
 [3121] "triangle"  "disk"      "fireball"  "fireball"  "circle"    "flash"    
 [3127] "light"     "sphere"    "oval"      "rectangle" "oval"      "triangle" 
 [3133] "triangle"  "sphere"    "oval"      "other"     "light"     "light"    
 [3139] "oval"      "diamond"   "oval"      "fireball"  "circle"    "fireball" 
 [3145] "light"     "cylinder"  "light"     "unknown"   "unknown"   "light"    
 [3151] "light"     "unknown"   "circle"    "sphere"    "formation" "fireball" 
 [3157] "triangle"  "fireball"  "sphere"    "fireball"  "other"     "light"    
 [3163] "fireball"  "fireball"  "fireball"  "circle"    "changing"  "light"    
 [3169] "formation" "circle"    "unknown"   "triangle"  "disk"      "disk"     
 [3175] "sphere"    "other"     NA          NA          NA          NA         
 [3181] "light"     "other"     "unknown"   "unknown"   "sphere"    "disk"     
 [3187] "light"     "disk"      "fireball"  "triangle"  "sphere"    "triangle" 
 [3193] "circle"    "triangle"  "triangle"  "light"     "other"     "unknown"  
 [3199] "disk"      "light"     "light"     "other"     "sphere"    "triangle" 
 [3205] "circle"    NA          "cigar"     "sphere"    "light"     "unknown"  
 [3211] "sphere"    "sphere"    "egg"       "light"     "light"     "fireball" 
 [3217] "triangle"  "triangle"  "unknown"   "light"     "triangle"  "disk"     
 [3223] "sphere"    "unknown"   "egg"       "other"     "changing"  "triangle" 
 [3229] "egg"       "disk"      "sphere"    "sphere"    "oval"      "oval"     
 [3235] "light"     "unknown"   "other"     "other"     "light"     "other"    
 [3241] "triangle"  "light"     "triangle"  "light"     "formation" "light"    
 [3247] "other"     "fireball"  "light"     "triangle"  "circle"    "light"    
 [3253] "triangle"  "triangle"  "other"     "other"     "light"     "chevron"  
 [3259] "triangle"  "unknown"   "unknown"   "unknown"   "circle"    "sphere"   
 [3265] "sphere"    "light"     "diamond"   "oval"      "teardrop"  "fireball" 
 [3271] "fireball"  "fireball"  "unknown"   "light"     "fireball"  "disk"     
 [3277] "light"     "chevron"   NA          "rectangle" "triangle"  "other"    
 [3283] "rectangle" "cylinder"  "sphere"    "other"     "cigar"     "circle"   
 [3289] "sphere"    "changing"  "circle"    "disk"      "disk"      "light"    
 [3295] "unknown"   "unknown"   "oval"      "changing"  "unknown"   "unknown"  
 [3301] NA          "sphere"    "light"     "unknown"   "circle"    "light"    
 [3307] "diamond"   "oval"      "other"     "sphere"    "unknown"   "light"    
 [3313] "light"     "sphere"    "light"     "light"     "flash"     "light"    
 [3319] "light"     "light"     "unknown"   "triangle"  "circle"    "triangle" 
 [3325] "light"     "unknown"   "light"     "formation" "flash"     "fireball" 
 [3331] NA          "fireball"  "changing"  "disk"      "light"     "other"    
 [3337] "sphere"    "light"     "cigar"     "other"     NA          "formation"
 [3343] "circle"    "disk"      "circle"    "unknown"   "oval"      "other"    
 [3349] "other"     "light"     "fireball"  "oval"      "fireball"  "triangle" 
 [3355] "other"     "light"     "triangle"  "fireball"  "circle"    "light"    
 [3361] "light"     "unknown"   "circle"    "oval"      "oval"      "circle"   
 [3367] "unknown"   "oval"      "other"     "light"     "oval"      "disk"     
 [3373] "circle"    "disk"      "fireball"  "light"     "light"     "fireball" 
 [3379] "light"     "light"     "unknown"   "unknown"   "fireball"  "circle"   
 [3385] "fireball"  "other"     "light"     "sphere"    "other"     "sphere"   
 [3391] "light"     "triangle"  "triangle"  "sphere"    "sphere"    "triangle" 
 [3397] "sphere"    "sphere"    "circle"    "sphere"    "flash"     "light"    
 [3403] "light"     "formation" "fireball"  "other"     "oval"      "disk"     
 [3409] "circle"    "circle"    "fireball"  "diamond"   "disk"      "disk"     
 [3415] "circle"    "formation" "oval"      NA          "fireball"  "fireball" 
 [3421] "circle"    "light"     "sphere"    NA          "other"     "circle"   
 [3427] "sphere"    "triangle"  "disk"      "triangle"  "other"     "diamond"  
 [3433] "light"     "oval"      "oval"      "triangle"  "changing"  "circle"   
 [3439] "other"     "changing"  "cylinder"  "oval"      "other"     "unknown"  
 [3445] "disk"      "sphere"    "flash"     "triangle"  "light"     "circle"   
 [3451] "oval"      "fireball"  "light"     "sphere"    "light"     "diamond"  
 [3457] "light"     "light"     "formation" "diamond"   "egg"       "unknown"  
 [3463] "formation" "changing"  "sphere"    "sphere"    "oval"      "chevron"  
 [3469] "triangle"  "sphere"    "light"     "light"     "other"     "other"    
 [3475] "cylinder"  "unknown"   "fireball"  "circle"    "sphere"    "fireball" 
 [3481] "fireball"  "circle"    "light"     "other"     "triangle"  "light"    
 [3487] "unknown"   NA          "disk"      "triangle"  "triangle"  "disk"     
 [3493] "light"     "changing"  "diamond"   "changing"  "triangle"  "circle"   
 [3499] "circle"    "changing"  "flash"     "diamond"   "cylinder"  NA         
 [3505] NA          NA          "cigar"     "sphere"    "chevron"   "light"    
 [3511] "circle"    "light"     "cigar"     NA          "cylinder"  "light"    
 [3517] "triangle"  "circle"    NA          "unknown"   "fireball"  "teardrop" 
 [3523] "cylinder"  "circle"    "disk"      "fireball"  "sphere"    "fireball" 
 [3529] "fireball"  "circle"    "rectangle" "fireball"  "sphere"    "flash"    
 [3535] "fireball"  "fireball"  "fireball"  "circle"    "fireball"  "fireball" 
 [3541] "unknown"   "other"     "light"     "fireball"  "light"     "light"    
 [3547] "light"     "light"     "oval"      "light"     "sphere"    "sphere"   
 [3553] "disk"      "triangle"  "light"     "triangle"  "disk"      "triangle" 
 [3559] "light"     "light"     "light"     "circle"    "changing"  "fireball" 
 [3565] "unknown"   "triangle"  "fireball"  "cigar"     "sphere"    "disk"     
 [3571] "light"     "cone"      "unknown"   "triangle"  "other"     "disk"     
 [3577] "light"     "unknown"   "triangle"  "other"     "other"     "sphere"   
 [3583] "light"     "egg"       "egg"       "sphere"    "sphere"    "cigar"    
 [3589] "sphere"    "cigar"     "chevron"   "light"     "sphere"    "circle"   
 [3595] "unknown"   "unknown"   "chevron"   NA          "chevron"   "unknown"  
 [3601] "sphere"    "cigar"     "light"     "light"     "cigar"     "unknown"  
 [3607] "other"     "light"     "light"     "triangle"  "disk"      "light"    
 [3613] "disk"      "light"     "circle"    "light"     "triangle"  "triangle" 
 [3619] "light"     "triangle"  "light"     "sphere"    "formation" "unknown"  
 [3625] "unknown"   "formation" "light"     "unknown"   "other"     "unknown"  
 [3631] "other"     "formation" "circle"    "oval"      "triangle"  "sphere"   
 [3637] "unknown"   "other"     "changing"  "circle"    "sphere"    "cigar"    
 [3643] "rectangle" "triangle"  NA          "light"     "light"     "light"    
 [3649] "formation" "light"     "rectangle" "sphere"    "light"     "unknown"  
 [3655] "light"     "other"     "other"     "fireball"  "oval"      "light"    
 [3661] "light"     "other"     "disk"      "light"     "triangle"  "light"    
 [3667] "triangle"  "disk"      "disk"      "other"     "light"     "flash"    
 [3673] "other"     "other"     "rectangle" "oval"      "cigar"     "other"    
 [3679] "triangle"  "flash"     "light"     "circle"    "triangle"  "triangle" 
 [3685] "light"     "light"     "other"     "light"     "circle"    "disk"     
 [3691] "oval"      "fireball"  "triangle"  "triangle"  NA          "circle"   
 [3697] NA          "cylinder"  "fireball"  "circle"    "light"     "sphere"   
 [3703] "unknown"   "light"     "formation" "fireball"  "light"     "circle"   
 [3709] "light"     "fireball"  "oval"      "fireball"  "fireball"  "light"    
 [3715] "triangle"  "light"     "fireball"  "light"     "sphere"    "circle"   
 [3721] "light"     "light"     "unknown"   "light"     "light"     "unknown"  
 [3727] "light"     "cigar"     "circle"    "triangle"  "unknown"   "light"    
 [3733] NA          "fireball"  "flash"     "light"     "sphere"    "triangle" 
 [3739] "light"     "light"     "triangle"  "other"     "light"     "sphere"   
 [3745] "disk"      "disk"      "disk"      "disk"      "light"     "light"    
 [3751] "triangle"  "triangle"  "triangle"  "formation" "triangle"  "circle"   
 [3757] "disk"      "disk"      "circle"    "light"     "other"     "formation"
 [3763] "light"     "cylinder"  "chevron"   "light"     "cylinder"  "light"    
 [3769] "light"     "other"     "oval"      "unknown"   "cylinder"  "chevron"  
 [3775] "cone"      "cross"     "formation" "light"     "oval"      "fireball" 
 [3781] "other"     "diamond"   "oval"      "oval"      "fireball"  "light"    
 [3787] "oval"      "flash"     "cigar"     "other"     "light"     "disk"     
 [3793] "light"     "rectangle" "triangle"  "oval"      "fireball"  "triangle" 
 [3799] "other"     "triangle"  "light"     "light"     "sphere"    "fireball" 
 [3805] "oval"      "disk"      "light"     "fireball"  "triangle"  "light"    
 [3811] "light"     "other"     "chevron"   "cigar"     "triangle"  "circle"   
 [3817] "other"     "rectangle" "light"     "other"     "sphere"    NA         
 [3823] "circle"    "disk"      "triangle"  "diamond"   "circle"    "unknown"  
 [3829] "unknown"   "light"     "unknown"   "unknown"   "unknown"   "unknown"  
 [3835] "disk"      "chevron"   "light"     "unknown"   "unknown"   "light"    
 [3841] "diamond"   "disk"      "disk"      "formation" "sphere"    "other"    
 [3847] "sphere"    "circle"    "other"     "teardrop"  "sphere"    "light"    
 [3853] "flash"     "oval"      "light"     "sphere"    "disk"      "disk"     
 [3859] "light"     "formation" "light"     "changing"  "formation" "sphere"   
 [3865] "light"     "light"     "changing"  "sphere"    "cigar"     "light"    
 [3871] "unknown"   "oval"      NA          "disk"      "light"     "light"    
 [3877] "light"     "light"     "light"     "triangle"  "disk"      "triangle" 
 [3883] "unknown"   "circle"    "light"     "light"     "light"     "changing" 
 [3889] "oval"      "formation" "triangle"  "circle"    "other"     "light"    
 [3895] "light"     "light"     "light"     "formation" "oval"      "circle"   
 [3901] "chevron"   "light"     "other"     "circle"    "triangle"  "circle"   
 [3907] "diamond"   "changing"  "light"     "sphere"    "teardrop"  "sphere"   
 [3913] "formation" "unknown"   "triangle"  "light"     "light"     "triangle" 
 [3919] "light"     "formation" "cylinder"  "chevron"   "egg"       "sphere"   
 [3925] "triangle"  "teardrop"  "diamond"   "changing"  "unknown"   "cigar"    
 [3931] "teardrop"  "cylinder"  "circle"    "circle"    "circle"    "circle"   
 [3937] "oval"      "flash"     "circle"    "triangle"  "disk"      "light"    
 [3943] NA          "light"     "fireball"  "unknown"   "cigar"     "other"    
 [3949] "triangle"  "light"     "sphere"    "fireball"  "light"     "oval"     
 [3955] "fireball"  "light"     "fireball"  "oval"      "teardrop"  "diamond"  
 [3961] "light"     "disk"      "unknown"   "disk"      "sphere"    "formation"
 [3967] "sphere"    "other"     "fireball"  NA          NA          "disk"     
 [3973] NA          NA          "circle"    "sphere"    "fireball"  "circle"   
 [3979] "triangle"  "cigar"     "light"     "light"     "chevron"   "other"    
 [3985] "cigar"     "other"     "diamond"   "disk"      "changing"  "circle"   
 [3991] "chevron"   "oval"      "oval"      "circle"    "unknown"   NA         
 [3997] "light"     "egg"       "triangle"  "disk"      "fireball"  "fireball" 
 [4003] "other"     "other"     "egg"       "egg"       "rectangle" "unknown"  
 [4009] "circle"    "circle"    "cigar"     "oval"      "unknown"   "chevron"  
 [4015] "triangle"  "diamond"   "light"     "other"     "triangle"  "unknown"  
 [4021] "triangle"  "sphere"    "sphere"    "unknown"   "diamond"   "disk"     
 [4027] "unknown"   "oval"      "light"     "oval"      "light"     "triangle" 
 [4033] "circle"    "formation" "light"     "light"     "circle"    "diamond"  
 [4039] "egg"       "changing"  "other"     "oval"      "triangle"  "unknown"  
 [4045] "circle"    "fireball"  "light"     "other"     "chevron"   "changing" 
 [4051] "formation" "light"     "light"     "changing"  "unknown"   "unknown"  
 [4057] "light"     "circle"    "light"     "light"     "triangle"  "circle"   
 [4063] "oval"      "light"     "triangle"  "unknown"   "circle"    "other"    
 [4069] "light"     "light"     "cylinder"  "disk"      "disk"      "light"    
 [4075] "triangle"  "unknown"   "egg"       "triangle"  "light"     "triangle" 
 [4081] "light"     "unknown"   "other"     "light"     "light"     "light"    
 [4087] "disk"      "light"     "cylinder"  "cigar"     "light"     "diamond"  
 [4093] "triangle"  "unknown"   "other"     "oval"      "sphere"    "light"    
 [4099] "fireball"  "triangle"  "unknown"   "other"     "chevron"   "cigar"    
 [4105] "light"     "triangle"  "flash"     "oval"      "oval"      "circle"   
 [4111] "circle"    NA          "light"     "other"     "other"     "triangle" 
 [4117] "light"     "oval"      "triangle"  "circle"    "oval"      "light"    
 [4123] "circle"    "formation" "other"     "oval"      "sphere"    "chevron"  
 [4129] "circle"    "light"     "circle"    "circle"    "formation" "light"    
 [4135] "light"     "fireball"  "other"     "circle"    "sphere"    "cylinder" 
 [4141] "cigar"     "cigar"     "circle"    "disk"      "fireball"  "other"    
 [4147] "light"     "circle"    "fireball"  "fireball"  "disk"      "changing" 
 [4153] "triangle"  "light"     "rectangle" "oval"      "disk"      "circle"   
 [4159] "sphere"    "light"     "cigar"     "sphere"    "oval"      "cone"     
 [4165] "fireball"  "unknown"   "light"     NA          NA          "disk"     
 [4171] "light"     "sphere"    "light"     "disk"      "oval"      "rectangle"
 [4177] "sphere"    "cigar"     "cylinder"  "diamond"   "changing"  "light"    
 [4183] "other"     NA          "triangle"  "light"     "disk"      "other"    
 [4189] "triangle"  "triangle"  "diamond"   "triangle"  "chevron"   "sphere"   
 [4195] "light"     "disk"      "cigar"     "cylinder"  "disk"      "fireball" 
 [4201] "triangle"  "unknown"   "unknown"   "light"     "other"     "rectangle"
 [4207] "other"     "cross"     "disk"      "disk"      "sphere"    "sphere"   
 [4213] "disk"      "light"     "oval"      "unknown"   "oval"      "fireball" 
 [4219] "formation" "fireball"  "light"     "fireball"  "diamond"   "flash"    
 [4225] "disk"      "disk"      "light"     "unknown"   "sphere"    "disk"     
 [4231] "light"     "unknown"   "light"     "disk"      "circle"    "light"    
 [4237] "other"     "light"     "sphere"    "light"     "rectangle" "unknown"  
 [4243] "triangle"  "light"     NA          "unknown"   "oval"      "circle"   
 [4249] "oval"      "disk"      "other"     "disk"      "sphere"    "sphere"   
 [4255] "fireball"  "oval"      "flash"     "oval"      "other"     "triangle" 
 [4261] "triangle"  "other"     "light"     "light"     "light"     "triangle" 
 [4267] "teardrop"  NA          "changing"  "light"     "flash"     "teardrop" 
 [4273] "chevron"   "circle"    "unknown"   "light"     "circle"    "fireball" 
 [4279] "other"     "other"     "sphere"    "unknown"   "disk"      "other"    
 [4285] "oval"      "unknown"   "other"     "triangle"  "flash"     "triangle" 
 [4291] "fireball"  "unknown"   "unknown"   "cone"      "teardrop"  "oval"     
 [4297] "light"     "light"     "triangle"  "disk"      "circle"    "chevron"  
 [4303] "oval"      "other"     "sphere"    "circle"    "triangle"  "oval"     
 [4309] "fireball"  "unknown"   "light"     "oval"      "sphere"    "sphere"   
 [4315] "circle"    "unknown"   "fireball"  "unknown"   "other"     "circle"   
 [4321] "oval"      "sphere"    "triangle"  "circle"    "triangle"  "light"    
 [4327] "sphere"    "light"     "light"     "light"     "circle"    "sphere"   
 [4333] "fireball"  "light"     "unknown"   "fireball"  "formation" "unknown"  
 [4339] "fireball"  "light"     "chevron"   "triangle"  "circle"    "other"    
 [4345] NA          "circle"    "fireball"  "circle"    "light"     "changing" 
 [4351] "light"     "sphere"    "disk"      "fireball"  "circle"    "light"    
 [4357] "formation" "light"     "unknown"   "light"     "light"     "changing" 
 [4363] "triangle"  "diamond"   "circle"    "disk"      "light"     "oval"     
 [4369] "circle"    "cylinder"  "other"     "light"     "circle"    "diamond"  
 [4375] "rectangle" "flash"     "unknown"   "circle"    "light"     "chevron"  
 [4381] "sphere"    "light"     "unknown"   "unknown"   "oval"      "formation"
 [4387] "sphere"    "oval"      "oval"      "circle"    "other"     "circle"   
 [4393] "disk"      "triangle"  NA          "cylinder"  "other"     "other"    
 [4399] "light"     "disk"      "fireball"  "fireball"  "other"     "sphere"   
 [4405] "circle"    "fireball"  "teardrop"  "circle"    "other"     "other"    
 [4411] "unknown"   "teardrop"  "cylinder"  "cylinder"  "disk"      "triangle" 
 [4417] "triangle"  "changing"  "triangle"  "cylinder"  "light"     "other"    
 [4423] "cylinder"  "sphere"    "unknown"   "cigar"     "light"     "light"    
 [4429] "sphere"    "egg"       "triangle"  "other"     "flash"     "triangle" 
 [4435] "triangle"  "light"     "unknown"   "changing"  "unknown"   "unknown"  
 [4441] "other"     "light"     "light"     "unknown"   "sphere"    "cone"     
 [4447] "circle"    "fireball"  "circle"    "triangle"  "unknown"   "unknown"  
 [4453] "oval"      "light"     "light"     "light"     "light"     "light"    
 [4459] "sphere"    "circle"    "circle"    "light"     "other"     "light"    
 [4465] "fireball"  "formation" "fireball"  "triangle"  "fireball"  "formation"
 [4471] "light"     "light"     "rectangle" "unknown"   "cylinder"  "sphere"   
 [4477] "other"     "circle"    "triangle"  "circle"    "changing"  "circle"   
 [4483] "unknown"   "triangle"  "triangle"  "light"     "rectangle" "triangle" 
 [4489] "light"     "other"     "sphere"    "teardrop"  "sphere"    "triangle" 
 [4495] "light"     "oval"      "unknown"   "cylinder"  "circle"    "fireball" 
 [4501] "unknown"   "oval"      "light"     "circle"    "flash"     "other"    
 [4507] "sphere"    "fireball"  "circle"    "other"     "unknown"   "light"    
 [4513] "formation" "circle"    "light"     "formation" "light"     "sphere"   
 [4519] "fireball"  "light"     "light"     "fireball"  "circle"    "circle"   
 [4525] "chevron"   "circle"    "chevron"   "light"     "unknown"   "unknown"  
 [4531] "circle"    "other"     "light"     "light"     "sphere"    "sphere"   
 [4537] NA          "sphere"    "light"     "teardrop"  "fireball"  "chevron"  
 [4543] "other"     "triangle"  "circle"    "light"     "triangle"  "circle"   
 [4549] "unknown"   "chevron"   "other"     "circle"    "light"     "circle"   
 [4555] "triangle"  "egg"       "circle"    "circle"    "unknown"   NA         
 [4561] "flash"     "light"     "other"     "circle"    NA          "light"    
 [4567] "disk"      "cigar"     "cylinder"  "cylinder"  "diamond"   NA         
 [4573] "sphere"    "disk"      "triangle"  "triangle"  "light"     "circle"   
 [4579] "sphere"    "sphere"    "light"     "formation" "triangle"  "light"    
 [4585] "triangle"  "circle"    "oval"      "circle"    "formation" "light"    
 [4591] "other"     "light"     "light"     "light"     "sphere"    "fireball" 
 [4597] "formation" "circle"    "light"     "sphere"    "light"     "changing" 
 [4603] "sphere"    "sphere"    "light"     "circle"    "sphere"    "light"    
 [4609] "sphere"    "triangle"  "triangle"  "light"     "chevron"   "sphere"   
 [4615] "light"     "other"     "light"     "fireball"  "fireball"  "other"    
 [4621] "disk"      "disk"      "circle"    "sphere"    "light"     "light"    
 [4627] "chevron"   "circle"    "light"     "triangle"  "light"     "light"    
 [4633] "light"     "formation" "unknown"   "light"     "light"     "other"    
 [4639] "egg"       "changing"  "other"     "circle"    "light"     "triangle" 
 [4645] "disk"      "circle"    "disk"      "triangle"  NA          "sphere"   
 [4651] "cigar"     "triangle"  "circle"    "circle"    "other"     "triangle" 
 [4657] "sphere"    "circle"    "circle"    "circle"    "light"     "sphere"   
 [4663] "light"     "light"     "triangle"  "circle"    "light"     "sphere"   
 [4669] "light"     "oval"      "chevron"   "other"     "diamond"   "oval"     
 [4675] "triangle"  "disk"      "cross"     "changing"  "light"     "oval"     
 [4681] "circle"    "triangle"  "diamond"   "light"     "cigar"     "light"    
 [4687] "triangle"  "rectangle" "teardrop"  "disk"      "light"     "disk"     
 [4693] "light"     "disk"      "triangle"  "triangle"  "sphere"    "unknown"  
 [4699] "triangle"  "triangle"  "disk"      "light"     "cylinder"  "other"    
 [4705] "light"     "other"     "other"     "triangle"  "unknown"   NA         
 [4711] "flash"     "flash"     "circle"    NA          "fireball"  "flash"    
 [4717] "circle"    "fireball"  "unknown"   "cylinder"  "fireball"  "flash"    
 [4723] "disk"      "circle"    "flash"     "oval"      "changing"  "other"    
 [4729] "sphere"    "light"     "formation" "triangle"  "triangle"  "circle"   
 [4735] "circle"    "light"     "light"     "light"     "triangle"  "triangle" 
 [4741] "oval"      "light"     "unknown"   "triangle"  "formation" "circle"   
 [4747] "light"     "circle"    "sphere"    "disk"      "egg"       "fireball" 
 [4753] "rectangle" "circle"    NA          "oval"      "rectangle" "light"    
 [4759] "light"     "other"     "fireball"  "changing"  "cigar"     "changing" 
 [4765] "fireball"  NA          "triangle"  "formation" "light"     "light"    
 [4771] "flash"     "fireball"  "circle"    "other"     "circle"    "circle"   
 [4777] "oval"      "disk"      "other"     "sphere"    "teardrop"  "triangle" 
 [4783] "other"     "cylinder"  "changing"  "light"     "light"     "circle"   
 [4789] "unknown"   "fireball"  "light"     "unknown"   "circle"    "disk"     
 [4795] "cigar"     "circle"    "fireball"  "circle"    "light"     "light"    
 [4801] "formation" "other"     "light"     "fireball"  "fireball"  "changing" 
 [4807] "flash"     "unknown"   "fireball"  "light"     "fireball"  "changing" 
 [4813] "changing"  "changing"  "sphere"    "other"     "circle"    "other"    
 [4819] "light"     "other"     "disk"      "fireball"  "fireball"  "circle"   
 [4825] "fireball"  "circle"    "other"     "oval"      "light"     "light"    
 [4831] "formation" "unknown"   "circle"    "light"     "flash"     "circle"   
 [4837] "light"     "unknown"   "disk"      "light"     "changing"  "circle"   
 [4843] "unknown"   "fireball"  "sphere"    "diamond"   "circle"    "light"    
 [4849] "circle"    "cigar"     "circle"    "light"     "light"     "fireball" 
 [4855] "light"     "light"     "light"     "triangle"  "light"     "light"    
 [4861] "light"     "circle"    "triangle"  "light"     "other"     "light"    
 [4867] "triangle"  "other"     "oval"      "disk"      "formation" "fireball" 
 [4873] "cylinder"  "light"     "triangle"  "triangle"  "triangle"  "circle"   
 [4879] "unknown"   "disk"      "circle"    "disk"      "fireball"  "circle"   
 [4885] "formation" "other"     "disk"      "disk"      "diamond"   "triangle" 
 [4891] "sphere"    "light"     "unknown"   "sphere"    "unknown"   "other"    
 [4897] "fireball"  NA          "triangle"  "fireball"  "rectangle" "light"    
 [4903] "changing"  NA          "triangle"  "light"     "light"     "disk"     
 [4909] "triangle"  "formation" "light"     "sphere"    "changing"  "disk"     
 [4915] "cylinder"  "sphere"    "egg"       "triangle"  "fireball"  "light"    
 [4921] "light"     "fireball"  "fireball"  "other"     "triangle"  "light"    
 [4927] NA          "oval"      "oval"      "light"     "triangle"  "triangle" 
 [4933] "other"     "cigar"     "unknown"   "disk"      "oval"      "disk"     
 [4939] "other"     "oval"      "triangle"  "triangle"  "triangle"  "sphere"   
 [4945] "changing"  "other"     "other"     "cigar"     "triangle"  "sphere"   
 [4951] "sphere"    "flash"     "other"     "disk"      "cigar"     "circle"   
 [4957] "cone"      "flash"     "other"     "light"     "light"     "chevron"  
 [4963] "triangle"  "other"     "circle"    "fireball"  "changing"  "light"    
 [4969] "oval"      "circle"    "sphere"    "changing"  "fireball"  "unknown"  
 [4975] "fireball"  "unknown"   "sphere"    "formation" "formation" "triangle" 
 [4981] "triangle"  "unknown"   "unknown"   "cylinder"  "oval"      "triangle" 
 [4987] "unknown"   "light"     "changing"  "light"     "triangle"  "cylinder" 
 [4993] "light"     "circle"    "light"     "light"     "other"     "light"    
 [4999] "changing"  "other"     "fireball"  "triangle"  "light"     "light"    
 [5005] "chevron"   "other"     "fireball"  "light"     "triangle"  "light"    
 [5011] "oval"      "sphere"    "unknown"   "disk"      "cigar"     "light"    
 [5017] "unknown"   "circle"    "circle"    "circle"    "oval"      "unknown"  
 [5023] "flash"     "rectangle" "triangle"  "flash"     "light"     "cigar"    
 [5029] NA          "triangle"  "light"     "unknown"   "oval"      "sphere"   
 [5035] "unknown"   "circle"    "fireball"  "light"     "rectangle" "rectangle"
 [5041] "light"     "cylinder"  "cigar"     "teardrop"  "light"     "circle"   
 [5047] "cone"      "formation" "triangle"  "triangle"  "light"     "fireball" 
 [5053] "sphere"    "diamond"   "triangle"  "triangle"  "cigar"     "light"    
 [5059] "light"     "cigar"     "formation" "disk"      "fireball"  "circle"   
 [5065] "triangle"  "light"     "rectangle" "light"     "disk"      "light"    
 [5071] "light"     "circle"    "sphere"    "unknown"   "other"     "cross"    
 [5077] "light"     "circle"    "oval"      "light"     "formation" "triangle" 
 [5083] "unknown"   "fireball"  "disk"      "circle"    "light"     "disk"     
 [5089] "disk"      "rectangle" "fireball"  "flash"     "triangle"  "circle"   
 [5095] "cross"     "cross"     "light"     "circle"    "triangle"  "unknown"  
 [5101] "formation" "disk"      "sphere"    "changing"  "triangle"  "triangle" 
 [5107] NA          "light"     "fireball"  "light"     "circle"    "oval"     
 [5113] "fireball"  "triangle"  "fireball"  "fireball"  "triangle"  "fireball" 
 [5119] "other"     "fireball"  "fireball"  "changing"  "sphere"    "light"    
 [5125] "triangle"  NA          "triangle"  "cylinder"  "other"     "triangle" 
 [5131] "cylinder"  "light"     "flash"     "triangle"  "disk"      "triangle" 
 [5137] "triangle"  "oval"      "disk"      "oval"      "unknown"   "triangle" 
 [5143] "oval"      "triangle"  "changing"  "other"     "other"     "circle"   
 [5149] "light"     "changing"  "triangle"  "triangle"  "light"     "rectangle"
 [5155] "light"     "light"     "cylinder"  "disk"      "light"     "other"    
 [5161] "light"     "flash"     "other"     "cigar"     "other"     "disk"     
 [5167] "light"     "triangle"  "unknown"   "other"     "sphere"    NA         
 [5173] "unknown"   "other"     "light"     "circle"    "triangle"  "other"    
 [5179] "light"     "light"     "other"     "sphere"    "cigar"     "light"    
 [5185] "flash"     "other"     "fireball"  "oval"      "light"     "cigar"    
 [5191] "light"     "light"     "light"     "triangle"  "changing"  "other"    
 [5197] "sphere"    "formation" "light"     "triangle"  "unknown"   "oval"     
 [5203] NA          "sphere"    "light"     "light"     "cigar"     "changing" 
 [5209] "triangle"  "fireball"  "cross"     "triangle"  "light"     "disk"     
 [5215] "changing"  "oval"      "oval"      "cigar"     "fireball"  "formation"
 [5221] "circle"    "light"     "formation" "light"     "fireball"  "light"    
 [5227] "chevron"   NA          "formation" "unknown"   "unknown"   "unknown"  
 [5233] "light"     "light"     "formation" "triangle"  "diamond"   "disk"     
 [5239] "fireball"  "triangle"  "triangle"  "cylinder"  "disk"      "triangle" 
 [5245] "unknown"   "triangle"  "oval"      "triangle"  "diamond"   "light"    
 [5251] "light"     "light"     "fireball"  "unknown"   "circle"    "rectangle"
 [5257] "light"     "fireball"  "other"     "unknown"   "light"     "triangle" 
 [5263] "chevron"   "other"     "disk"      "triangle"  "diamond"   "light"    
 [5269] "flash"     "oval"      "triangle"  "fireball"  "light"     "light"    
 [5275] "circle"    "circle"    "other"     "disk"      "sphere"    "triangle" 
 [5281] "fireball"  "sphere"    "oval"      "circle"    "light"     "rectangle"
 [5287] "light"     "cigar"     "flash"     "light"     "formation" "triangle" 
 [5293] "circle"    "rectangle" "fireball"  "other"     "light"     "light"    
 [5299] "triangle"  "fireball"  "sphere"    "light"     "light"     "triangle" 
 [5305] "circle"    "light"     "rectangle" "flash"     NA          "triangle" 
 [5311] "circle"    "circle"    "unknown"   "fireball"  "fireball"  "disk"     
 [5317] "triangle"  "formation" "sphere"    "triangle"  "fireball"  "sphere"   
 [5323] "light"     "disk"      "cylinder"  "triangle"  NA          NA         
 [5329] "cylinder"  "unknown"   "circle"    "circle"    "oval"      "circle"   
 [5335] "fireball"  "unknown"   "light"     "fireball"  "oval"      NA         
 [5341] "other"     "flash"     "triangle"  "light"     "light"     "other"    
 [5347] "triangle"  "triangle"  "disk"      "disk"      "light"     "disk"     
 [5353] "formation" "formation" "light"     "cigar"     "disk"      "circle"   
 [5359] "unknown"   "fireball"  "other"     "light"     "triangle"  "light"    
 [5365] "cigar"     "changing"  "other"     "unknown"   "triangle"  "fireball" 
 [5371] "circle"    "sphere"    "light"     "chevron"   "triangle"  "chevron"  
 [5377] "triangle"  "chevron"   "triangle"  "chevron"   "triangle"  "chevron"  
 [5383] "triangle"  "light"     "circle"    "light"     "triangle"  NA         
 [5389] "light"     "light"     NA          "changing"  "unknown"   "disk"     
 [5395] "unknown"   "unknown"   "light"     "light"     "triangle"  "triangle" 
 [5401] "flash"     "triangle"  "oval"      "oval"      "fireball"  "light"    
 [5407] "disk"      "flash"     "light"     "unknown"   "other"     "oval"     
 [5413] "flash"     "fireball"  "triangle"  "light"     "circle"    "sphere"   
 [5419] "flash"     "light"     "light"     NA          "light"     "disk"     
 [5425] "light"     "circle"    "circle"    "unknown"   NA          "light"    
 [5431] "other"     "sphere"    "fireball"  "light"     "formation" "circle"   
 [5437] NA          "light"     "other"     "disk"      "fireball"  "light"    
 [5443] "light"     "light"     "triangle"  "fireball"  "light"     "rectangle"
 [5449] "oval"      "light"     "oval"      "light"     "unknown"   "light"    
 [5455] "sphere"    "teardrop"  "circle"    "light"     "circle"    "light"    
 [5461] "light"     "light"     "triangle"  "triangle"  "triangle"  "unknown"  
 [5467] "circle"    "triangle"  "triangle"  "fireball"  "chevron"   "fireball" 
 [5473] "light"     "cylinder"  "light"     "sphere"    "light"     "fireball" 
 [5479] "fireball"  "chevron"   "light"     "other"     "circle"    "circle"   
 [5485] "sphere"    "circle"    "fireball"  "other"     "circle"    "rectangle"
 [5491] "flash"     "triangle"  "light"     "light"     "changing"  "circle"   
 [5497] "formation" "other"     "light"     "circle"    "diamond"   "rectangle"
 [5503] "sphere"    "flash"     "circle"    "teardrop"  "cross"     "triangle" 
 [5509] "light"     "fireball"  "fireball"  "cigar"     "changing"  "unknown"  
 [5515] "circle"    NA          NA          "unknown"   "diamond"   "light"    
 [5521] "triangle"  "light"     "light"     "fireball"  "disk"      "circle"   
 [5527] "formation" "sphere"    "fireball"  "chevron"   "other"     "oval"     
 [5533] "light"     "light"     "teardrop"  "unknown"   "changing"  "sphere"   
 [5539] "sphere"    "other"     "flash"     "changing"  "circle"    "changing" 
 [5545] "teardrop"  "fireball"  "other"     "triangle"  "circle"    "circle"   
 [5551] "light"     "light"     "cigar"     "disk"      "disk"      "light"    
 [5557] "changing"  "chevron"   "sphere"    "unknown"   "light"     "unknown"  
 [5563] "cigar"     "unknown"   "fireball"  "light"     "other"     "disk"     
 [5569] "other"     "formation" "disk"      "light"     "circle"    "flash"    
 [5575] "fireball"  "oval"      "unknown"   "fireball"  "sphere"    NA         
 [5581] "disk"      "light"     "triangle"  "light"     "light"     "egg"      
 [5587] "triangle"  "other"     "light"     "circle"    "chevron"   "fireball" 
 [5593] "formation" "formation" "disk"      "light"     "light"     "light"    
 [5599] "fireball"  "teardrop"  "triangle"  "triangle"  "unknown"   "disk"     
 [5605] "changing"  "sphere"    "oval"      "fireball"  "diamond"   "circle"   
 [5611] "triangle"  "formation" NA          "light"     "triangle"  "triangle" 
 [5617] "changing"  "light"     "light"     "triangle"  NA          "formation"
 [5623] "circle"    "light"     "other"     "formation" "other"     "circle"   
 [5629] "chevron"   "light"     "teardrop"  NA          "triangle"  "unknown"  
 [5635] "other"     "light"     "light"     "oval"      "other"     "oval"     
 [5641] "light"     "disk"      "light"     "disk"      "light"     "light"    
 [5647] "disk"      "light"     "triangle"  "chevron"   "circle"    "other"    
 [5653] "oval"      "light"     "circle"    "circle"    "unknown"   "changing" 
 [5659] "formation" "sphere"    "triangle"  "fireball"  NA          "sphere"   
 [5665] "fireball"  "light"     "light"     "rectangle" "disk"      "light"    
 [5671] "sphere"    "oval"      "oval"      "flash"     "light"     "triangle" 
 [5677] "cross"     "fireball"  "circle"    "other"     "fireball"  "unknown"  
 [5683] NA          "light"     "circle"    "unknown"   "triangle"  "flash"    
 [5689] "triangle"  "teardrop"  "fireball"  "diamond"   "circle"    "unknown"  
 [5695] "light"     "circle"    "oval"      "cigar"     "circle"    "triangle" 
 [5701] "other"     "sphere"    "circle"    "chevron"   "light"     "diamond"  
 [5707] "light"     "light"     "triangle"  "formation" "rectangle" "unknown"  
 [5713] "oval"      "light"     "sphere"    "sphere"    "circle"    "light"    
 [5719] "formation" "light"     "other"     "circle"    "cylinder"  "unknown"  
 [5725] "oval"      "light"     "other"     "cigar"     "circle"    "fireball" 
 [5731] "fireball"  "fireball"  "changing"  "unknown"   "sphere"    "light"    
 [5737] "light"     "circle"    "disk"      "disk"      "disk"      "light"    
 [5743] "flash"     "circle"    "light"     "diamond"   "triangle"  "unknown"  
 [5749] "triangle"  "circle"    "oval"      "cigar"     "sphere"    "triangle" 
 [5755] "unknown"   "cylinder"  "rectangle" "circle"    "disk"      "other"    
 [5761] "fireball"  "triangle"  NA          NA          "light"     "light"    
 [5767] "sphere"    "other"     "other"     "fireball"  "circle"    "light"    
 [5773] "fireball"  "unknown"   "other"     "sphere"    "light"     "light"    
 [5779] "circle"    "light"     "light"     "triangle"  "disk"      "disk"     
 [5785] "light"     "other"     "fireball"  "fireball"  "fireball"  "triangle" 
 [5791] "light"     "light"     "light"     "light"     "disk"      "flash"    
 [5797] "diamond"   "light"     "triangle"  "oval"      "light"     "unknown"  
 [5803] "circle"    "fireball"  "sphere"    "fireball"  "disk"      "unknown"  
 [5809] "egg"       "fireball"  "diamond"   "circle"    "changing"  "flash"    
 [5815] "light"     "sphere"    "chevron"   "sphere"    "triangle"  "light"    
 [5821] "light"     "other"     "unknown"   "light"     "cigar"     "other"    
 [5827] "circle"    "light"     "disk"      "triangle"  NA          "disk"     
 [5833] "disk"      "cigar"     "light"     "sphere"    "light"     "rectangle"
 [5839] "other"     "disk"      "other"     "formation" "fireball"  "other"    
 [5845] "other"     "light"     "other"     NA          "light"     "sphere"   
 [5851] "fireball"  NA          "light"     "circle"    "disk"      "disk"     
 [5857] "sphere"    "teardrop"  "other"     "chevron"   "fireball"  "unknown"  
 [5863] "flash"     "light"     "circle"    "triangle"  "oval"      "circle"   
 [5869] "cigar"     "cylinder"  "rectangle" "light"     "triangle"  "circle"   
 [5875] "light"     "sphere"    "triangle"  "light"     "disk"      "triangle" 
 [5881] "triangle"  "oval"      "triangle"  "light"     "light"     "triangle" 
 [5887] "formation" "light"     "triangle"  "fireball"  "unknown"   "chevron"  
 [5893] "light"     "triangle"  "oval"      "light"     "other"     "formation"
 [5899] "rectangle" "formation" "unknown"   "light"     "cigar"     "circle"   
 [5905] "unknown"   "formation" "fireball"  "changing"  "disk"      "rectangle"
 [5911] "diamond"   "sphere"    "teardrop"  "circle"    "other"     "light"    
 [5917] "other"     "other"     "light"     "sphere"    "other"     "circle"   
 [5923] "triangle"  "light"     "egg"       "light"     "light"     "fireball" 
 [5929] "triangle"  "formation" "triangle"  "oval"      "circle"    "light"    
 [5935] "disk"      "circle"    "sphere"    "changing"  "sphere"    "unknown"  
 [5941] "formation" "fireball"  "triangle"  "other"     "circle"    "light"    
 [5947] "light"     "light"     "unknown"   "flash"     "sphere"    "other"    
 [5953] "light"     "triangle"  "light"     "triangle"  NA          "light"    
 [5959] "other"     "formation" "disk"      "triangle"  "rectangle" "formation"
 [5965] "other"     "circle"    "rectangle" "light"     NA          "fireball" 
 [5971] "other"     "teardrop"  "circle"    "unknown"   "circle"    "oval"     
 [5977] "light"     "light"     "unknown"   "light"     "other"     "unknown"  
 [5983] "light"     "light"     "egg"       "fireball"  "unknown"   "cigar"    
 [5989] "cigar"     "oval"      "disk"      "disk"      "disk"      "circle"   
 [5995] "disk"      "disk"      "circle"    "triangle"  "sphere"    "light"    
 [6001] "oval"      "circle"    "circle"    "triangle"  NA          "disk"     
 [6007] "cigar"     "light"     "triangle"  NA          "disk"      "fireball" 
 [6013] "sphere"    "cone"      "chevron"   "light"     "circle"    "triangle" 
 [6019] "unknown"   "oval"      "chevron"   "disk"      "rectangle" "circle"   
 [6025] "other"     "cigar"     "circle"    NA          "triangle"  "sphere"   
 [6031] "sphere"    "fireball"  "fireball"  "sphere"    "unknown"   NA         
 [6037] "circle"    "chevron"   "other"     NA          "cigar"     "disk"     
 [6043] "fireball"  "triangle"  "chevron"   "cross"     "fireball"  "unknown"  
 [6049] "chevron"   "other"     "other"     "other"     "light"     "disk"     
 [6055] "light"     "oval"      "light"     "unknown"   "light"     NA         
 [6061] "triangle"  "triangle"  "chevron"   "sphere"    "oval"      "teardrop" 
 [6067] "other"     "formation" "fireball"  "sphere"    "other"     "disk"     
 [6073] "circle"    "formation" "diamond"   "flash"     "triangle"  "triangle" 
 [6079] "disk"      "light"     "other"     "cylinder"  "light"     "diamond"  
 [6085] "sphere"    "other"     "fireball"  "fireball"  "fireball"  "unknown"  
 [6091] "other"     NA          "light"     "light"     "triangle"  "light"    
 [6097] "sphere"    "other"     "cigar"     "disk"      "disk"      "sphere"   
 [6103] "flash"     "triangle"  "chevron"   "cross"     "unknown"   "circle"   
 [6109] "formation" "triangle"  "fireball"  "cigar"     "cigar"     "cylinder" 
 [6115] "triangle"  "oval"      "changing"  "disk"      "circle"    "light"    
 [6121] "light"     "triangle"  "light"     "triangle"  "light"     "triangle" 
 [6127] "light"     "unknown"   "triangle"  "cigar"     "triangle"  "oval"     
 [6133] "cylinder"  "formation" "triangle"  "disk"      "light"     "sphere"   
 [6139] "circle"    "circle"    "other"     "formation" "triangle"  "sphere"   
 [6145] "triangle"  "light"     "light"     "disk"      "circle"    "circle"   
 [6151] "triangle"  "diamond"   "light"     "light"     "triangle"  "teardrop" 
 [6157] "cylinder"  "light"     "fireball"  "oval"      "triangle"  "changing" 
 [6163] "diamond"   "triangle"  "light"     "changing"  "light"     "circle"   
 [6169] "light"     "sphere"    "oval"      "unknown"   "triangle"  "light"    
 [6175] "changing"  "teardrop"  "light"     "circle"    "sphere"    "chevron"  
 [6181] "other"     "oval"      "light"     "light"     "fireball"  "triangle" 
 [6187] "cigar"     "circle"    "circle"    "fireball"  "light"     "circle"   
 [6193] "unknown"   "circle"    "egg"       "light"     "light"     "unknown"  
 [6199] "changing"  "light"     "light"     "light"     "light"     "triangle" 
 [6205] "other"     "cigar"     "fireball"  "diamond"   "light"     "light"    
 [6211] "teardrop"  "light"     "light"     "fireball"  "fireball"  "unknown"  
 [6217] "light"     "light"     "light"     "sphere"    "unknown"   "triangle" 
 [6223] "light"     "disk"      "flash"     "formation" "light"     "oval"     
 [6229] "light"     "circle"    "circle"    "cigar"     "light"     NA         
 [6235] "oval"      "other"     "other"     "disk"      "other"     "diamond"  
 [6241] "disk"      "other"     "triangle"  "disk"      "triangle"  "unknown"  
 [6247] "light"     "disk"      "circle"    "other"     "rectangle" "unknown"  
 [6253] "fireball"  "triangle"  "light"     "sphere"    "light"     NA         
 [6259] NA          "circle"    NA          "triangle"  NA          "circle"   
 [6265] "flash"     "light"     "sphere"    "other"     "light"     "circle"   
 [6271] "light"     "changing"  "circle"    "cylinder"  "fireball"  "sphere"   
 [6277] "fireball"  "other"     "triangle"  "unknown"   "fireball"  "other"    
 [6283] "rectangle" "circle"    NA          "circle"    "circle"    NA         
 [6289] "circle"    "circle"    "disk"      "other"     "changing"  "light"    
 [6295] "light"     "other"     "fireball"  "fireball"  "light"     "unknown"  
 [6301] "circle"    "light"     "fireball"  "light"     "light"     "egg"      
 [6307] "egg"       "sphere"    "diamond"   "disk"      "circle"    "disk"     
 [6313] "triangle"  "fireball"  "circle"    "changing"  "disk"      "formation"
 [6319] "disk"      "other"     "disk"      "disk"      "other"     "unknown"  
 [6325] "light"     "light"     "sphere"    "other"     "light"     "light"    
 [6331] "triangle"  "fireball"  "triangle"  "other"     "light"     "fireball" 
 [6337] "triangle"  "light"     "triangle"  "sphere"    "other"     "flash"    
 [6343] "disk"      "disk"      "unknown"   "light"     "changing"  "circle"   
 [6349] "triangle"  "unknown"   "disk"      "other"     "cigar"     "circle"   
 [6355] "triangle"  "triangle"  "triangle"  "triangle"  "fireball"  "triangle" 
 [6361] "triangle"  "triangle"  NA          "light"     "cigar"     "circle"   
 [6367] "disk"      "unknown"   "light"     "circle"    "formation" "light"    
 [6373] "triangle"  "light"     "cigar"     "light"     "light"     "light"    
 [6379] "triangle"  "formation" "light"     "circle"    "circle"    "light"    
 [6385] "triangle"  "light"     "light"     "light"     "light"     NA         
 [6391] "light"     "formation" "light"     "light"     "triangle"  "light"    
 [6397] "circle"    "circle"    "fireball"  "formation" "formation" "light"    
 [6403] "light"     "light"     "light"     "light"     "light"     "light"    
 [6409] "light"     "light"     "other"     "other"     "unknown"   "unknown"  
 [6415] "unknown"   "light"     "triangle"  "light"     "circle"    "triangle" 
 [6421] "changing"  "sphere"    "light"     NA          "circle"    "light"    
 [6427] "sphere"    "triangle"  "unknown"   "fireball"  "formation" "light"    
 [6433] "triangle"  "formation" "light"     "light"     "light"     "triangle" 
 [6439] "unknown"   "light"     "light"     "unknown"   "circle"    "light"    
 [6445] "light"     "circle"    "circle"    "light"     "light"     "light"    
 [6451] "circle"    "unknown"   "cigar"     "formation" "other"     "unknown"  
 [6457] "other"     "sphere"    "other"     "other"     "unknown"   "flash"    
 [6463] "cylinder"  "cigar"     "unknown"   "light"     "light"     "other"    
 [6469] "light"     "triangle"  "triangle"  "fireball"  "disk"      "triangle" 
 [6475] "changing"  "triangle"  "unknown"   "fireball"  "unknown"   NA         
 [6481] "flash"     "egg"       "chevron"   "flash"     NA          "fireball" 
 [6487] "fireball"  "light"     "fireball"  "unknown"   "circle"    "disk"     
 [6493] "unknown"   "disk"      "formation" "other"     NA          "triangle" 
 [6499] "unknown"   "fireball"  "light"     "fireball"  "light"     "light"    
 [6505] "triangle"  "diamond"   "oval"      "triangle"  "light"     "fireball" 
 [6511] "fireball"  "cigar"     "disk"      "light"     "sphere"    "unknown"  
 [6517] "unknown"   "sphere"    "changing"  "disk"      "triangle"  "oval"     
 [6523] "triangle"  "unknown"   "sphere"    "oval"      "light"     "changing" 
 [6529] "circle"    "fireball"  "flash"     "light"     "fireball"  "light"    
 [6535] "triangle"  "light"     "sphere"    "unknown"   "light"     "egg"      
 [6541] "sphere"    "fireball"  "triangle"  "triangle"  "fireball"  "oval"     
 [6547] "fireball"  "light"     "formation" "formation" "circle"    "fireball" 
 [6553] "fireball"  "circle"    "changing"  "sphere"    "triangle"  "oval"     
 [6559] "triangle"  "oval"      "sphere"    "triangle"  "disk"      "cylinder" 
 [6565] "rectangle" "oval"      "rectangle" "circle"    NA          "light"    
 [6571] "other"     "oval"      "fireball"  "fireball"  "oval"      "triangle" 
 [6577] "changing"  "fireball"  "light"     "unknown"   "changing"  "circle"   
 [6583] "formation" "chevron"   "light"     "formation" "fireball"  "rectangle"
 [6589] "fireball"  "triangle"  "light"     "triangle"  "sphere"    "fireball" 
 [6595] "formation" "oval"      "other"     "other"     "sphere"    "flash"    
 [6601] "triangle"  "fireball"  "light"     "circle"    "fireball"  "sphere"   
 [6607] "fireball"  "oval"      "cylinder"  "disk"      "cigar"     "light"    
 [6613] "triangle"  "light"     "fireball"  "triangle"  "circle"    "light"    
 [6619] "light"     "formation" "egg"       "circle"    "oval"      "sphere"   
 [6625] "triangle"  "light"     "light"     "flash"     "circle"    "sphere"   
 [6631] "fireball"  "diamond"   "sphere"    "other"     "cigar"     "light"    
 [6637] "circle"    "diamond"   "other"     "chevron"   "formation" "light"    
 [6643] "unknown"   "light"     "light"     "rectangle" "disk"      "circle"   
 [6649] "circle"    "diamond"   "fireball"  "circle"    "disk"      "chevron"  
 [6655] "disk"      NA          "rectangle" "light"     "light"     "unknown"  
 [6661] "oval"      "light"     "changing"  "changing"  "circle"    "sphere"   
 [6667] "triangle"  "circle"    "fireball"  "circle"    "fireball"  "flash"    
 [6673] "teardrop"  "fireball"  "fireball"  "fireball"  "fireball"  NA         
 [6679] "cigar"     "disk"      "unknown"   "triangle"  "changing"  "formation"
 [6685] "light"     "rectangle" "other"     "circle"    "light"     "other"    
 [6691] "triangle"  "oval"      "light"     "disk"      "disk"      "unknown"  
 [6697] "disk"      "cylinder"  "unknown"   "light"     "formation" "disk"     
 [6703] "other"     "light"     "formation" "light"     "other"     "light"    
 [6709] "circle"    "circle"    "unknown"   "cigar"     "cigar"     "fireball" 
 [6715] "light"     "sphere"    "cigar"     "cigar"     "changing"  "circle"   
 [6721] "light"     "light"     "light"     "circle"    "oval"      "formation"
 [6727] "other"     "light"     "light"     "chevron"   "oval"      NA         
 [6733] "disk"      "circle"    "circle"    "sphere"    "light"     "sphere"   
 [6739] "cigar"     "unknown"   "sphere"    "unknown"   "oval"      "unknown"  
 [6745] "unknown"   "disk"      "other"     "fireball"  "fireball"  "cone"     
 [6751] "other"     "circle"    "triangle"  "triangle"  "unknown"   "fireball" 
 [6757] "fireball"  "circle"    "sphere"    "light"     "light"     "light"    
 [6763] "oval"      "circle"    "unknown"   "circle"    "other"     "circle"   
 [6769] "triangle"  "light"     "cigar"     "light"     "circle"    "cylinder" 
 [6775] "light"     "disk"      "disk"      "sphere"    "circle"    "sphere"   
 [6781] "light"     "triangle"  "circle"    "circle"    "light"     "cylinder" 
 [6787] "sphere"    "triangle"  "fireball"  "formation" "sphere"    "other"    
 [6793] "circle"    "sphere"    "light"     "fireball"  "unknown"   "oval"     
 [6799] "other"     "changing"  "fireball"  "oval"      "light"     "formation"
 [6805] "light"     "other"     "fireball"  "light"     "light"     "flash"    
 [6811] "light"     "fireball"  "cigar"     "unknown"   "cross"     "formation"
 [6817] "flash"     "circle"    "circle"    "light"     "triangle"  "circle"   
 [6823] "rectangle" "triangle"  "changing"  "formation" "circle"    "other"    
 [6829] "light"     "light"     "fireball"  "circle"    "flash"     "sphere"   
 [6835] "other"     "sphere"    "fireball"  "circle"    "formation" "formation"
 [6841] "fireball"  "sphere"    "fireball"  "light"     "triangle"  "light"    
 [6847] "light"     "flash"     "circle"    "circle"    "rectangle" "chevron"  
 [6853] "other"     "triangle"  "light"     "fireball"  "oval"      "circle"   
 [6859] "fireball"  "circle"    "fireball"  "light"     "light"     "fireball" 
 [6865] "circle"    "circle"    "fireball"  "disk"      "disk"      "light"    
 [6871] "sphere"    "disk"      "circle"    NA          "light"     "light"    
 [6877] "light"     NA          "flash"     "fireball"  "fireball"  "fireball" 
 [6883] "fireball"  "fireball"  "fireball"  "fireball"  "oval"      "fireball" 
 [6889] "fireball"  "flash"     "fireball"  "circle"    "unknown"   "light"    
 [6895] "fireball"  "other"     NA          "egg"       "triangle"  "oval"     
 [6901] "other"     "triangle"  "disk"      "diamond"   "circle"    "light"    
 [6907] "unknown"   "other"     "disk"      "fireball"  "triangle"  "light"    
 [6913] "disk"      "sphere"    "cigar"     "oval"      "unknown"   "circle"   
 [6919] "light"     "diamond"   "light"     "triangle"  "flash"     "diamond"  
 [6925] "diamond"   "triangle"  "oval"      "circle"    "cigar"     "formation"
 [6931] NA          "triangle"  "light"     "other"     "rectangle" "light"    
 [6937] "triangle"  "fireball"  NA          "light"     "teardrop"  "formation"
 [6943] "changing"  "changing"  "light"     "light"     "changing"  "unknown"  
 [6949] "formation" "light"     "light"     "disk"      "changing"  "light"    
 [6955] "light"     "triangle"  "other"     "other"     "circle"    "triangle" 
 [6961] "light"     "other"     "circle"    "other"     "light"     "triangle" 
 [6967] "light"     "oval"      "circle"    "circle"    "changing"  "sphere"   
 [6973] "formation" "other"     "other"     "oval"      "flash"     "light"    
 [6979] "changing"  "unknown"   "fireball"  "disk"      "circle"    "oval"     
 [6985] "sphere"    "fireball"  "light"     "light"     "flash"     "other"    
 [6991] "light"     "disk"      "unknown"   "circle"    "light"     "light"    
 [6997] "rectangle" "light"     "triangle"  "cigar"     "circle"    "light"    
 [7003] "light"     "circle"    "egg"       "light"     "circle"    "other"    
 [7009] "oval"      "formation" "other"     "circle"    "fireball"  "light"    
 [7015] "sphere"    "light"     "triangle"  "circle"    "circle"    "light"    
 [7021] "triangle"  "other"     "circle"    "fireball"  "triangle"  "fireball" 
 [7027] "triangle"  "other"     "light"     "flash"     "circle"    "cylinder" 
 [7033] "oval"      "disk"      "cylinder"  "oval"      "triangle"  "light"    
 [7039] "formation" "circle"    "light"     "light"     "circle"    "light"    
 [7045] "fireball"  "disk"      "changing"  "circle"    "flash"     "teardrop" 
 [7051] "light"     "triangle"  "fireball"  "circle"    "rectangle" "circle"   
 [7057] "light"     "unknown"   "diamond"   "diamond"   "fireball"  "circle"   
 [7063] "circle"    "light"     "triangle"  "circle"    "cylinder"  "light"    
 [7069] "changing"  "sphere"    "changing"  "triangle"  "triangle"  "fireball" 
 [7075] "circle"    "cylinder"  "fireball"  "sphere"    "oval"      "circle"   
 [7081] "formation" "fireball"  "teardrop"  "light"     NA          "cigar"    
 [7087] NA          "disk"      "disk"      "disk"      "sphere"    "cylinder" 
 [7093] "circle"    "oval"      "light"     "circle"    "changing"  "rectangle"
 [7099] "changing"  "triangle"  "circle"    NA          "formation" "other"    
 [7105] "light"     "fireball"  "formation" "sphere"    "sphere"    "circle"   
 [7111] "fireball"  "cigar"     "other"     "triangle"  "other"     "chevron"  
 [7117] "triangle"  "triangle"  "other"     "triangle"  "light"     "other"    
 [7123] "changing"  "unknown"   "circle"    "fireball"  "light"     "circle"   
 [7129] "fireball"  "circle"    "rectangle" "circle"    "oval"      "circle"   
 [7135] "light"     "light"     "light"     "fireball"  NA          "cross"    
 [7141] "disk"      "cylinder"  "triangle"  "disk"      "fireball"  "formation"
 [7147] "fireball"  "light"     "light"     "triangle"  "cigar"     "light"    
 [7153] "triangle"  "cigar"     "formation" "light"     "chevron"   "disk"     
 [7159] "chevron"   "light"     "unknown"   "other"     "light"     "other"    
 [7165] "formation" "unknown"   "diamond"   "other"     "light"     "cross"    
 [7171] "unknown"   "triangle"  "unknown"   "light"     "circle"    "light"    
 [7177] "other"     "fireball"  "chevron"   "cigar"     "chevron"   "sphere"   
 [7183] "light"     "other"     "cylinder"  "sphere"    "light"     "disk"     
 [7189] "light"     "formation" "triangle"  "triangle"  "light"     "sphere"   
 [7195] "oval"      "light"     "diamond"   "other"     "sphere"    "light"    
 [7201] "triangle"  "triangle"  "unknown"   "light"     "rectangle" "cone"     
 [7207] "other"     "circle"    "circle"    "changing"  "fireball"  "unknown"  
 [7213] "light"     "sphere"    "fireball"  "light"     "light"     "fireball" 
 [7219] "sphere"    "other"     "triangle"  "other"     "unknown"   "fireball" 
 [7225] "oval"      "disk"      "light"     "changing"  "disk"      "unknown"  
 [7231] "light"     "light"     NA          "triangle"  "disk"      "formation"
 [7237] NA          "circle"    "unknown"   "unknown"   "disk"      "unknown"  
 [7243] "formation" "light"     "sphere"    "fireball"  "other"     "diamond"  
 [7249] "changing"  "cone"      "circle"    "circle"    "other"     "triangle" 
 [7255] "formation" NA          "unknown"   "disk"      "sphere"    "other"    
 [7261] "disk"      "sphere"    "unknown"   "other"     "fireball"  "circle"   
 [7267] "light"     "sphere"    "fireball"  "oval"      "formation" "light"    
 [7273] "fireball"  "fireball"  "fireball"  "sphere"    "sphere"    "light"    
 [7279] "triangle"  "other"     "chevron"   "chevron"   NA          "circle"   
 [7285] "light"     "unknown"   "unknown"   "unknown"   "circle"    "light"    
 [7291] "unknown"   "cylinder"  "disk"      "disk"      "fireball"  "triangle" 
 [7297] "sphere"    "fireball"  "circle"    "light"     "oval"      "light"    
 [7303] "light"     "sphere"    "light"     "formation" "fireball"  "sphere"   
 [7309] "light"     "formation" "circle"    "disk"      "circle"    "fireball" 
 [7315] "fireball"  "light"     "light"     "triangle"  "fireball"  "circle"   
 [7321] "light"     "other"     "light"     "disk"      "light"     "oval"     
 [7327] "fireball"  "circle"    "circle"    NA          "unknown"   "triangle" 
 [7333] "triangle"  "triangle"  "other"     "circle"    "fireball"  "unknown"  
 [7339] "triangle"  "triangle"  "oval"      "light"     "unknown"   "cross"    
 [7345] "disk"      "disk"      "light"     "triangle"  "sphere"    "triangle" 
 [7351] "cone"      "other"     "triangle"  "disk"      "unknown"   "triangle" 
 [7357] "light"     "light"     "disk"      "other"     "disk"      "cross"    
 [7363] "disk"      "cigar"     "teardrop"  "oval"      "fireball"  "circle"   
 [7369] "fireball"  "light"     "light"     "light"     "light"     "light"    
 [7375] "cone"      "sphere"    "other"     "cigar"     "triangle"  "chevron"  
 [7381] "teardrop"  "other"     "other"     "triangle"  "changing"  "disk"     
 [7387] "disk"      "other"     "cone"      "triangle"  "triangle"  "light"    
 [7393] "disk"      "light"     "other"     "triangle"  "formation" "sphere"   
 [7399] "disk"      "triangle"  "light"     "cigar"     "light"     "oval"     
 [7405] "light"     "cigar"     "triangle"  "triangle"  "unknown"   "flash"    
 [7411] "light"     "disk"      "other"     "cigar"     "triangle"  "changing" 
 [7417] "light"     "circle"    "disk"      "other"     "triangle"  "cigar"    
 [7423] "rectangle" "egg"       "oval"      "unknown"   "teardrop"  "light"    
 [7429] "rectangle" "light"     "light"     "triangle"  "circle"    "circle"   
 [7435] "light"     "circle"    "formation" NA          "light"     "cigar"    
 [7441] "oval"      "light"     "triangle"  "flash"     "other"     "triangle" 
 [7447] "light"     "sphere"    "sphere"    "circle"    "other"     "disk"     
 [7453] "light"     "light"     "light"     NA          "light"     "triangle" 
 [7459] "oval"      "light"     "teardrop"  "circle"    "circle"    "disk"     
 [7465] "other"     "rectangle" "flash"     "other"     "oval"      "formation"
 [7471] "triangle"  "fireball"  "circle"    "disk"      "light"     "light"    
 [7477] "unknown"   "light"     "other"     "sphere"    "sphere"    "fireball" 
 [7483] "sphere"    "oval"      "fireball"  "circle"    "oval"      "unknown"  
 [7489] "unknown"   "light"     "light"     "light"     "other"     "circle"   
 [7495] NA          "light"     "fireball"  "disk"      "circle"    "changing" 
 [7501] "oval"      "light"     "other"     "triangle"  "sphere"    "light"    
 [7507] "fireball"  "triangle"  "fireball"  "other"     "fireball"  "light"    
 [7513] "changing"  "circle"    NA          "fireball"  "light"     "other"    
 [7519] "triangle"  "circle"    "cylinder"  "light"     "circle"    "light"    
 [7525] "light"     "light"     "unknown"   "fireball"  "formation" "cylinder" 
 [7531] "triangle"  "sphere"    "oval"      "cigar"     "fireball"  "oval"     
 [7537] "light"     "light"     "unknown"   "rectangle" "other"     "unknown"  
 [7543] "triangle"  "flash"     "disk"      NA          "other"     "disk"     
 [7549] "unknown"   "cone"      "disk"      "triangle"  "other"     "light"    
 [7555] "rectangle" "other"     "circle"    "light"     NA          NA         
 [7561] NA          "triangle"  "circle"    "light"     "light"     "triangle" 
 [7567] "other"     "disk"      "formation" "unknown"   "formation" "teardrop" 
 [7573] "triangle"  "sphere"    "light"     "disk"      "circle"    "light"    
 [7579] "triangle"  "triangle"  "other"     "cylinder"  "light"     "fireball" 
 [7585] NA          "fireball"  "diamond"   "diamond"   "sphere"    "circle"   
 [7591] "light"     NA          "fireball"  "triangle"  "unknown"   "triangle" 
 [7597] "disk"      "sphere"    "light"     "triangle"  "oval"      "triangle" 
 [7603] "oval"      "oval"      "triangle"  "disk"      "circle"    "formation"
 [7609] "formation" "formation" "formation" "light"     "oval"      "teardrop" 
 [7615] "rectangle" "sphere"    "oval"      "unknown"   "light"     "light"    
 [7621] "other"     "unknown"   "other"     "cone"      NA          "cigar"    
 [7627] "sphere"    "changing"  "cigar"     "triangle"  "light"     "oval"     
 [7633] "light"     "formation" "light"     "light"     "other"     "cylinder" 
 [7639] "fireball"  "unknown"   "oval"      "unknown"   "light"     "circle"   
 [7645] "light"     NA          "other"     "sphere"    "oval"      "disk"     
 [7651] "sphere"    "light"     "light"     "light"     "light"     "oval"     
 [7657] "light"     "circle"    "triangle"  "circle"    "disk"      "other"    
 [7663] "egg"       "disk"      "unknown"   "flash"     "changing"  "circle"   
 [7669] "sphere"    "light"     "triangle"  "triangle"  "disk"      "light"    
 [7675] "light"     "light"     NA          "other"     "light"     "triangle" 
 [7681] "other"     "circle"    "cone"      "other"     "other"     "circle"   
 [7687] "light"     NA          "sphere"    "light"     "light"     "unknown"  
 [7693] "light"     "fireball"  "flash"     "circle"    "oval"      "chevron"  
 [7699] "unknown"   "chevron"   "circle"    "circle"    "sphere"    "light"    
 [7705] "other"     "fireball"  "cigar"     "light"     "unknown"   "disk"     
 [7711] "sphere"    "light"     "light"     "triangle"  "circle"    "light"    
 [7717] "triangle"  "fireball"  "formation" "fireball"  "flash"     "circle"   
 [7723] "light"     NA          "disk"      "sphere"    "cigar"     "light"    
 [7729] "circle"    "unknown"   "circle"    "unknown"   "fireball"  "triangle" 
 [7735] "other"     "triangle"  "light"     "diamond"   "disk"      "disk"     
 [7741] "other"     "other"     "light"     "light"     "oval"      "light"    
 [7747] "light"     "other"     "oval"      NA          "diamond"   "other"    
 [7753] "triangle"  "light"     "circle"    "cone"      "triangle"  "diamond"  
 [7759] "flash"     "triangle"  "triangle"  "triangle"  "triangle"  NA         
 [7765] "unknown"   "triangle"  "circle"    "formation" "other"     "light"    
 [7771] "other"     "other"     "disk"      "circle"    "fireball"  "triangle" 
 [7777] "triangle"  "triangle"  "formation" "other"     "other"     "circle"   
 [7783] "light"     "other"     "fireball"  "oval"      "rectangle" "triangle" 
 [7789] "disk"      "other"     "light"     "changing"  "changing"  "light"    
 [7795] "light"     "light"     "light"     "other"     "cigar"     "disk"     
 [7801] "unknown"   "formation" "circle"    "light"     "diamond"   "light"    
 [7807] "sphere"    "oval"      "light"     "oval"      "disk"      "formation"
 [7813] "oval"      "sphere"    "oval"      "light"     "light"     "disk"     
 [7819] "cigar"     "triangle"  "triangle"  "rectangle" "disk"      "cigar"    
 [7825] "light"     "formation" "light"     NA          "disk"      "light"    
 [7831] "unknown"   "other"     "sphere"    "circle"    "unknown"   "cigar"    
 [7837] "circle"    "light"     "other"     "changing"  "disk"      "light"    
 [7843] "cylinder"  "other"     NA          "cylinder"  "sphere"    "formation"
 [7849] "chevron"   "sphere"    "light"     "light"     "flash"     "chevron"  
 [7855] "cigar"     "formation" "light"     "triangle"  "unknown"   "light"    
 [7861] "unknown"   "light"     "disk"      "oval"      "light"     "sphere"   
 [7867] "circle"    "formation" "light"     "oval"      "light"     "triangle" 
 [7873] "light"     "light"     "light"     "unknown"   "flash"     "circle"   
 [7879] "unknown"   "disk"      "light"     "oval"      "oval"      "light"    
 [7885] "triangle"  "circle"    "disk"      "sphere"    "sphere"    "teardrop" 
 [7891] "flash"     "diamond"   "other"     "light"     "changing"  "disk"     
 [7897] "disk"      "light"     "unknown"   "light"     "sphere"    "light"    
 [7903] "triangle"  "sphere"    "sphere"    "formation" "unknown"   "unknown"  
 [7909] NA          "sphere"    "teardrop"  "circle"    "chevron"   "formation"
 [7915] "sphere"    "light"     "triangle"  "triangle"  "circle"    "formation"
 [7921] "flash"     "cross"     "triangle"  "unknown"   "changing"  "light"    
 [7927] "oval"      "sphere"    "oval"      "fireball"  "sphere"    "light"    
 [7933] "formation" "triangle"  "light"     "circle"    "circle"    "oval"     
 [7939] "oval"      "other"     "fireball"  "cigar"     "sphere"    "oval"     
 [7945] "changing"  "egg"       "light"     "unknown"   "light"     "chevron"  
 [7951] "other"     "circle"    "changing"  "light"     "fireball"  "chevron"  
 [7957] "changing"  "light"     "diamond"   NA          "oval"      "disk"     
 [7963] "disk"      "rectangle" "triangle"  "other"     "other"     "sphere"   
 [7969] "other"     NA          "other"     "circle"    "triangle"  "changing" 
 [7975] "disk"      "sphere"    "fireball"  "other"     "disk"      "triangle" 
 [7981] "fireball"  "disk"      "other"     "other"     "unknown"   "teardrop" 
 [7987] "light"     "changing"  "disk"      NA          "oval"      "sphere"   
 [7993] "circle"    "chevron"   "circle"    "light"     "light"     "chevron"  
 [7999] "unknown"   "circle"    "light"     "light"     "disk"      "rectangle"
 [8005] "circle"    "other"     "cylinder"  "light"     "oval"      "light"    
 [8011] "light"     "disk"      "other"     "circle"    "changing"  "unknown"  
 [8017] "circle"    "rectangle" "triangle"  "circle"    "triangle"  "disk"     
 [8023] "cigar"     "unknown"   "other"     "light"     "triangle"  "light"    
 [8029] "sphere"    "oval"      "light"     "light"     "light"     "rectangle"
 [8035] "light"     "circle"    "fireball"  "light"     "light"     "unknown"  
 [8041] "circle"    "other"     "oval"      "diamond"   "light"     "other"    
 [8047] "circle"    "sphere"    "disk"      "other"     "flash"     "triangle" 
 [8053] "light"     "sphere"    "oval"      "other"     "unknown"   "unknown"  
 [8059] "light"     "cylinder"  "cigar"     "circle"    "oval"      "sphere"   
 [8065] "light"     "cylinder"  "circle"    "teardrop"  "flash"     "light"    
 [8071] "fireball"  "fireball"  "disk"      "light"     "triangle"  "oval"     
 [8077] "cylinder"  "circle"    "other"     "cigar"     "cigar"     "disk"     
 [8083] "triangle"  "unknown"   "light"     "light"     "oval"      "triangle" 
 [8089] "chevron"   "cone"      "other"     "circle"    "other"     "fireball" 
 [8095] "formation" "unknown"   "unknown"   "circle"    "circle"    "triangle" 
 [8101] "light"     "triangle"  "cylinder"  "disk"      "rectangle" "triangle" 
 [8107] "light"     "triangle"  "circle"    "oval"      NA          "fireball" 
 [8113] "light"     "other"     "fireball"  "triangle"  "triangle"  "diamond"  
 [8119] "light"     "chevron"   "other"     "fireball"  "other"     "oval"     
 [8125] "formation" "cigar"     "disk"      "unknown"   "fireball"  "other"    
 [8131] "light"     "sphere"    "disk"      "circle"    "fireball"  "fireball" 
 [8137] "light"     "light"     "fireball"  "fireball"  "other"     "other"    
 [8143] "disk"      "unknown"   "light"     "triangle"  "light"     "rectangle"
 [8149] "circle"    "sphere"    "sphere"    "teardrop"  "fireball"  "diamond"  
 [8155] "triangle"  "light"     "other"     "fireball"  "diamond"   "unknown"  
 [8161] "light"     "fireball"  "circle"    "circle"    "cigar"     "oval"     
 [8167] "egg"       "light"     "rectangle" NA          "unknown"   "light"    
 [8173] "other"     "light"     "oval"      "flash"     "triangle"  "other"    
 [8179] "other"     "circle"    "diamond"   "diamond"   "light"     "diamond"  
 [8185] "light"     "triangle"  "light"     "other"     "disk"      "fireball" 
 [8191] NA          "unknown"   "disk"      "cigar"     "other"     "disk"     
 [8197] "other"     "disk"      "disk"      "unknown"   "cylinder"  "sphere"   
 [8203] "sphere"    "unknown"   "fireball"  "light"     "light"     "unknown"  
 [8209] "other"     NA          "fireball"  "sphere"    NA          "triangle" 
 [8215] "circle"    "light"     "circle"    "light"     NA          "formation"
 [8221] "unknown"   "fireball"  "light"     "disk"      "fireball"  "circle"   
 [8227] "fireball"  "disk"      "oval"      "oval"      "light"     "light"    
 [8233] "unknown"   "cigar"     "light"     "changing"  "egg"       "disk"     
 [8239] "cigar"     "triangle"  "cigar"     "sphere"    "formation" "formation"
 [8245] "light"     "flash"     "cross"     "rectangle" "disk"      "disk"     
 [8251] "circle"    "circle"    NA          "cylinder"  "flash"     "other"    
 [8257] "fireball"  "circle"    "oval"      "other"     "unknown"   "oval"     
 [8263] "disk"      "triangle"  "light"     "oval"      "diamond"   "circle"   
 [8269] "light"     "cigar"     "flash"     "changing"  "disk"      "other"    
 [8275] "light"     "fireball"  "disk"      "disk"      "circle"    "light"    
 [8281] "unknown"   "light"     "diamond"   "oval"      "light"     "light"    
 [8287] "disk"      "light"     "sphere"    NA          "light"     "changing" 
 [8293] "circle"    "circle"    "oval"      "light"     "light"     "changing" 
 [8299] "teardrop"  "circle"    "other"     "unknown"   "light"     "light"    
 [8305] "circle"    "circle"    "teardrop"  "light"     "sphere"    "disk"     
 [8311] "fireball"  "cylinder"  "formation" "other"     "circle"    "other"    
 [8317] "unknown"   "light"     "light"     "formation" "circle"    "circle"   
 [8323] "light"     "triangle"  "chevron"   "disk"      "chevron"   "fireball" 
 [8329] NA          "other"     "diamond"   "circle"    "light"     "circle"   
 [8335] "teardrop"  "fireball"  "unknown"   "other"     "unknown"   "light"    
 [8341] "light"     "unknown"   "other"     "triangle"  "light"     "oval"     
 [8347] "oval"      "disk"      "light"     "light"     "light"     "changing" 
 [8353] "light"     "circle"    "disk"      "formation" "circle"    "circle"   
 [8359] "sphere"    "light"     "triangle"  "unknown"   "triangle"  "sphere"   
 [8365] "changing"  "other"     "oval"      "chevron"   "fireball"  "circle"   
 [8371] "circle"    "unknown"   "light"     "rectangle" "triangle"  "cylinder" 
 [8377] "disk"      "light"     "cigar"     "oval"      "triangle"  "cylinder" 
 [8383] "other"     "triangle"  "light"     "other"     "triangle"  "circle"   
 [8389] "oval"      "changing"  "sphere"    "sphere"    "triangle"  "formation"
 [8395] "light"     "changing"  "triangle"  "light"     "chevron"   "triangle" 
 [8401] "fireball"  "flash"     "unknown"   "light"     "sphere"    "triangle" 
 [8407] "triangle"  "circle"    "formation" "triangle"  "fireball"  "cigar"    
 [8413] "rectangle" "circle"    "sphere"    "flash"     "light"     "rectangle"
 [8419] NA          "light"     "unknown"   "unknown"   "fireball"  "light"    
 [8425] "fireball"  "flash"     "circle"    "fireball"  "circle"    "cylinder" 
 [8431] "light"     "other"     "formation" "unknown"   "cylinder"  "unknown"  
 [8437] "unknown"   "disk"      "triangle"  "light"     "rectangle" "other"    
 [8443] "rectangle" "other"     "circle"    "disk"      "light"     "triangle" 
 [8449] "rectangle" "circle"    "unknown"   NA          "disk"      NA         
 [8455] "circle"    NA          "circle"    "light"     "triangle"  "circle"   
 [8461] "light"     "disk"      "sphere"    "sphere"    "disk"      "disk"     
 [8467] "egg"       "light"     "fireball"  "disk"      "sphere"    NA         
 [8473] "other"     "unknown"   "fireball"  "light"     "light"     "other"    
 [8479] "triangle"  "fireball"  NA          "unknown"   "unknown"   "oval"     
 [8485] "rectangle" "rectangle" "triangle"  "oval"      "oval"      "light"    
 [8491] "circle"    "fireball"  "changing"  "light"     "unknown"   "other"    
 [8497] "rectangle" "circle"    "light"     "light"     "unknown"   "light"    
 [8503] "light"     "light"     "light"     "disk"      "disk"      "circle"   
 [8509] "formation" "disk"      "triangle"  "sphere"    "cone"      "unknown"  
 [8515] "unknown"   "other"     "circle"    "light"     "unknown"   "other"    
 [8521] "light"     "other"     "disk"      "cylinder"  "unknown"   "cylinder" 
 [8527] "triangle"  "light"     "light"     NA          "unknown"   "other"    
 [8533] "triangle"  "light"     "light"     "light"     "other"     "formation"
 [8539] "cylinder"  "formation" "unknown"   "teardrop"  "circle"    "light"    
 [8545] "unknown"   "cylinder"  "fireball"  "circle"    "triangle"  "light"    
 [8551] "circle"    "triangle"  "other"     "changing"  "triangle"  "other"    
 [8557] "fireball"  "unknown"   "unknown"   "sphere"    "other"     "triangle" 
 [8563] "light"     "other"     "fireball"  "oval"      "unknown"   "circle"   
 [8569] "light"     "cigar"     "light"     "disk"      "oval"      "triangle" 
 [8575] "changing"  "triangle"  "disk"      "light"     "flash"     "fireball" 
 [8581] "fireball"  "other"     "light"     "changing"  "oval"      "other"    
 [8587] "circle"    "fireball"  "fireball"  "disk"      "triangle"  "cigar"    
 [8593] "flash"     NA          "oval"      "circle"    "sphere"    "flash"    
 [8599] "other"     "changing"  "oval"      "light"     "disk"      "oval"     
 [8605] "disk"      "cigar"     "oval"      "diamond"   "formation" "flash"    
 [8611] "disk"      "triangle"  "triangle"  "cone"      "oval"      "triangle" 
 [8617] "unknown"   "fireball"  "circle"    "sphere"    "light"     "formation"
 [8623] "light"     "flash"     "unknown"   "changing"  "unknown"   "teardrop" 
 [8629] "circle"    "cylinder"  "circle"    "light"     "unknown"   "fireball" 
 [8635] "rectangle" "triangle"  NA          "circle"    "circle"    "circle"   
 [8641] "fireball"  "sphere"    "other"     "circle"    "circle"    "circle"   
 [8647] "triangle"  "unknown"   "triangle"  "chevron"   "triangle"  "light"    
 [8653] "changing"  "fireball"  "teardrop"  "circle"    "unknown"   "egg"      
 [8659] "changing"  "light"     "sphere"    "other"     "triangle"  "other"    
 [8665] "triangle"  "triangle"  "circle"    "unknown"   "triangle"  "triangle" 
 [8671] "circle"    "triangle"  "flash"     "oval"      "light"     "rectangle"
 [8677] "cigar"     "formation" "fireball"  "circle"    "circle"    "other"    
 [8683] "sphere"    "fireball"  "triangle"  "other"     "fireball"  "fireball" 
 [8689] "oval"      "fireball"  "fireball"  "fireball"  "rectangle" "triangle" 
 [8695] "sphere"    "changing"  "rectangle" "fireball"  "oval"      "other"    
 [8701] "sphere"    "sphere"    "circle"    "disk"      "unknown"   "light"    
 [8707] "disk"      "sphere"    "light"     "triangle"  "light"     "unknown"  
 [8713] NA          "light"     "circle"    "light"     "circle"    "triangle" 
 [8719] "circle"    "cylinder"  "cigar"     "disk"      "triangle"  "circle"   
 [8725] "triangle"  "diamond"   NA          "circle"    "light"     NA         
 [8731] NA          "light"     "triangle"  "cylinder"  "chevron"   "egg"      
 [8737] "flash"     "fireball"  "fireball"  "triangle"  "circle"    "triangle" 
 [8743] "formation" "cigar"     "sphere"    "cigar"     "light"     "light"    
 [8749] "cigar"     "other"     "circle"    "disk"      "oval"      "circle"   
 [8755] "cylinder"  "light"     "circle"    "disk"      "light"     "other"    
 [8761] "light"     "light"     "other"     "disk"      "triangle"  NA         
 [8767] "triangle"  "light"     "cigar"     "light"     "triangle"  "disk"     
 [8773] "other"     "disk"      "fireball"  "cylinder"  "formation" "circle"   
 [8779] "light"     "triangle"  "light"     "teardrop"  "unknown"   "other"    
 [8785] "disk"      "diamond"   "triangle"  "other"     "triangle"  "changing" 
 [8791] "sphere"    "fireball"  "formation" "triangle"  "egg"       "circle"   
 [8797] "disk"      "light"     "light"     "changing"  "changing"  "circle"   
 [8803] "sphere"    "cigar"     "light"     "light"     "light"     "egg"      
 [8809] "unknown"   "light"     "cylinder"  "sphere"    "light"     "unknown"  
 [8815] "triangle"  "other"     "triangle"  NA          "disk"      "chevron"  
 [8821] "egg"       "cigar"     NA          "light"     "triangle"  "circle"   
 [8827] "light"     "circle"    "diamond"   "triangle"  "light"     "other"    
 [8833] "light"     "triangle"  "light"     "light"     "unknown"   "flash"    
 [8839] "other"     "light"     "formation" "light"     "unknown"   "cylinder" 
 [8845] "sphere"    "sphere"    "sphere"    "triangle"  "light"     "light"    
 [8851] "light"     "triangle"  "rectangle" "circle"    "other"     "disk"     
 [8857] "light"     "light"     "sphere"    "other"     "disk"      "circle"   
 [8863] "egg"       "other"     "other"     "light"     "light"     "flash"    
 [8869] "light"     "triangle"  "other"     "light"     "triangle"  "light"    
 [8875] "circle"    "unknown"   "oval"      "unknown"   "oval"      "triangle" 
 [8881] "cross"     "circle"    "triangle"  "light"     "other"     "disk"     
 [8887] "formation" "cylinder"  "light"     "disk"      "circle"    NA         
 [8893] "sphere"    "other"     "disk"      "sphere"    "unknown"   "triangle" 
 [8899] "fireball"  "disk"      "cylinder"  "fireball"  "formation" "triangle" 
 [8905] "circle"    "rectangle" "unknown"   "diamond"   "formation" "triangle" 
 [8911] "unknown"   "circle"    "circle"    "triangle"  "unknown"   "unknown"  
 [8917] "chevron"   "cigar"     "sphere"    "cross"     "diamond"   "triangle" 
 [8923] NA          "oval"      "light"     "light"     "light"     "fireball" 
 [8929] "disk"      "light"     "light"     "teardrop"  "sphere"    "light"    
 [8935] "light"     "triangle"  "diamond"   "fireball"  "light"     "unknown"  
 [8941] "diamond"   "fireball"  "cigar"     "unknown"   "cigar"     NA         
 [8947] "unknown"   "chevron"   "cylinder"  "disk"      "light"     "flash"    
 [8953] "unknown"   "formation" "light"     "circle"    NA          "cylinder" 
 [8959] "light"     "light"     "light"     NA          "circle"    NA         
 [8965] "sphere"    "fireball"  "light"     "sphere"    "light"     "light"    
 [8971] "unknown"   "flash"     "unknown"   "oval"      "circle"    "other"    
 [8977] "disk"      NA          "unknown"   "unknown"   "other"     "disk"     
 [8983] "chevron"   "light"     "formation" "light"     "triangle"  "oval"     
 [8989] "cigar"     "sphere"    "egg"       "disk"      "changing"  "sphere"   
 [8995] "disk"      "light"     "triangle"  "disk"      "sphere"    "triangle" 
 [9001] "light"     "triangle"  "oval"      "light"     "cylinder"  "oval"     
 [9007] "circle"    "cylinder"  "triangle"  "rectangle" "oval"      "light"    
 [9013] "light"     NA          "triangle"  "triangle"  "disk"      "other"    
 [9019] "cigar"     "triangle"  "circle"    "cigar"     "triangle"  "unknown"  
 [9025] "disk"      NA          "light"     "circle"    "light"     "triangle" 
 [9031] NA          NA          "unknown"   "sphere"    NA          "other"    
 [9037] "triangle"  "sphere"    "cylinder"  NA          "triangle"  NA         
 [9043] "other"     "light"     "circle"    "unknown"   "triangle"  "pyramid"  
 [9049] "light"     "other"     "fireball"  "formation" "disk"      "circle"   
 [9055] "light"     "light"     "rectangle" "circle"    "fireball"  "fireball" 
 [9061] "fireball"  "other"     "light"     "cylinder"  "circle"    "light"    
 [9067] "cross"     "triangle"  "diamond"   "disk"      "triangle"  "fireball" 
 [9073] "light"     "other"     "circle"    "oval"      "oval"      "fireball" 
 [9079] "triangle"  "cylinder"  "circle"    "cigar"     "fireball"  "egg"      
 [9085] "sphere"    "light"     "changing"  "triangle"  "egg"       "disk"     
 [9091] "triangle"  "cylinder"  "disk"      "triangle"  "egg"       NA         
 [9097] "other"     "triangle"  "circle"    "light"     "unknown"   "other"    
 [9103] "sphere"    "fireball"  "oval"      "diamond"   "circle"    NA         
 [9109] "sphere"    "other"     "other"     "sphere"    "diamond"   "oval"     
 [9115] "oval"      "other"     "changing"  "light"     "light"     "fireball" 
 [9121] "fireball"  "other"     "cigar"     "unknown"   "unknown"   "triangle" 
 [9127] "light"     "circle"    "formation" "light"     "light"     "light"    
 [9133] "other"     "sphere"    "light"     "light"     "circle"    "circle"   
 [9139] "circle"    "formation" "formation" "light"     "light"     "light"    
 [9145] "fireball"  "fireball"  "light"     "light"     "circle"    "disk"     
 [9151] "fireball"  "fireball"  "fireball"  "fireball"  "fireball"  "sphere"   
 [9157] "fireball"  "cylinder"  "circle"    "light"     "light"     "other"    
 [9163] "triangle"  "cylinder"  "other"     "triangle"  "diamond"   "circle"   
 [9169] "triangle"  "changing"  "teardrop"  "circle"    "other"     "unknown"  
 [9175] "other"     "circle"    "oval"      "sphere"    "light"     "light"    
 [9181] "disk"      "circle"    "light"     "other"     "chevron"   "sphere"   
 [9187] "disk"      "triangle"  "diamond"   "circle"    "fireball"  "triangle" 
 [9193] "changing"  "rectangle" "formation" "chevron"   "oval"      "cylinder" 
 [9199] "triangle"  "diamond"   "rectangle" "circle"    "fireball"  NA         
 [9205] "circle"    "flash"     "circle"    NA          "oval"      "cylinder" 
 [9211] "other"     "oval"      "sphere"    "sphere"    "sphere"    "circle"   
 [9217] "sphere"    "sphere"    "light"     "light"     "formation" "unknown"  
 [9223] "circle"    "oval"      "diamond"   "egg"       "egg"       "cigar"    
 [9229] "triangle"  "disk"      "circle"    "light"     "cylinder"  "oval"     
 [9235] "sphere"    "unknown"   "oval"      "unknown"   "light"     "other"    
 [9241] "unknown"   "light"     "triangle"  "unknown"   "triangle"  "light"    
 [9247] NA          "sphere"    "unknown"   "circle"    "disk"      "flash"    
 [9253] "fireball"  "oval"      "other"     "light"     "triangle"  "fireball" 
 [9259] "other"     "other"     "light"     "light"     "light"     "light"    
 [9265] "light"     "fireball"  "unknown"   "other"     "chevron"   "light"    
 [9271] "light"     "circle"    "light"     "triangle"  "sphere"    "light"    
 [9277] "oval"      "cone"      "changing"  "disk"      "other"     "light"    
 [9283] "triangle"  "unknown"   "triangle"  "light"     "cigar"     "circle"   
 [9289] "light"     "oval"      "rectangle" "oval"      "triangle"  "light"    
 [9295] "light"     "triangle"  "cigar"     "disk"      "disk"      "rectangle"
 [9301] "unknown"   "circle"    "disk"      "triangle"  "oval"      "other"    
 [9307] "light"     "sphere"    "changing"  "light"     "disk"      "disk"     
 [9313] "disk"      "circle"    "triangle"  "triangle"  "triangle"  "oval"     
 [9319] "flash"     "unknown"   "fireball"  "changing"  "circle"    "light"    
 [9325] "egg"       "oval"      "light"     "unknown"   "oval"      "oval"     
 [9331] "light"     "formation" "oval"      "cigar"     "other"     "unknown"  
 [9337] "circle"    "light"     "sphere"    "triangle"  "light"     "light"    
 [9343] "flash"     "triangle"  "light"     "formation" "triangle"  "oval"     
 [9349] "circle"    "light"     "fireball"  "disk"      "rectangle" "triangle" 
 [9355] "light"     "triangle"  "sphere"    "oval"      "fireball"  "changing" 
 [9361] "circle"    "sphere"    "rectangle" "oval"      "triangle"  "triangle" 
 [9367] "other"     "circle"    "unknown"   "triangle"  "light"     "light"    
 [9373] "light"     "light"     "disk"      "triangle"  "light"     "circle"   
 [9379] "triangle"  "other"     "light"     "other"     "fireball"  "diamond"  
 [9385] "light"     "circle"    "formation" "other"     "sphere"    "triangle" 
 [9391] "other"     "oval"      "cylinder"  "light"     "formation" "circle"   
 [9397] "light"     "triangle"  "light"     "chevron"   "light"     "other"    
 [9403] "other"     "triangle"  NA          "other"     NA          "unknown"  
 [9409] "light"     "unknown"   "other"     "light"     "diamond"   "triangle" 
 [9415] "disk"      "oval"      "fireball"  "triangle"  "other"     "disk"     
 [9421] "sphere"    "light"     "cylinder"  "light"     "unknown"   "unknown"  
 [9427] "fireball"  "light"     "triangle"  "diamond"   "fireball"  "sphere"   
 [9433] "flash"     "circle"    "fireball"  "light"     "light"     "fireball" 
 [9439] "circle"    "light"     "triangle"  "light"     "light"     "changing" 
 [9445] "changing"  "light"     "rectangle" "triangle"  "disk"      "formation"
 [9451] "unknown"   "disk"      "cone"      "unknown"   "unknown"   "unknown"  
 [9457] "light"     "oval"      "unknown"   "formation" "formation" "light"    
 [9463] "unknown"   "light"     "disk"      "light"     "circle"    "light"    
 [9469] "light"     "fireball"  "triangle"  "formation" "circle"    "circle"   
 [9475] "rectangle" "circle"    "light"     "triangle"  "light"     "triangle" 
 [9481] "oval"      "light"     "formation" "fireball"  "fireball"  "unknown"  
 [9487] "sphere"    "formation" "diamond"   "light"     "fireball"  "fireball" 
 [9493] "formation" "flash"     "fireball"  "light"     "light"     "sphere"   
 [9499] "other"     "circle"    "oval"      "triangle"  "circle"    "light"    
 [9505] "light"     NA          "fireball"  "fireball"  "sphere"    "fireball" 
 [9511] "formation" "circle"    "formation" "fireball"  "sphere"    "egg"      
 [9517] "other"     "formation" "other"     "fireball"  "formation" "egg"      
 [9523] "light"     "egg"       "disk"      "circle"    "disk"      "fireball" 
 [9529] "light"     "fireball"  "other"     "oval"      "circle"    "light"    
 [9535] "light"     "light"     "light"     NA          "unknown"   "light"    
 [9541] "circle"    "cone"      "fireball"  "oval"      "triangle"  "cigar"    
 [9547] "fireball"  "fireball"  "light"     "unknown"   "sphere"    "light"    
 [9553] "circle"    "circle"    "formation" "light"     "fireball"  "disk"     
 [9559] "chevron"   "disk"      "circle"    "disk"      "cigar"     "light"    
 [9565] NA          "disk"      NA          NA          "triangle"  NA         
 [9571] "triangle"  "cigar"     "light"     "light"     "disk"      "triangle" 
 [9577] "fireball"  "flash"     "triangle"  "fireball"  "fireball"  "triangle" 
 [9583] "other"     "circle"    "other"     "circle"    "rectangle" "other"    
 [9589] "triangle"  "light"     "sphere"    "formation" "light"     "disk"     
 [9595] "triangle"  "circle"    "changing"  "triangle"  "changing"  "fireball" 
 [9601] "fireball"  "other"     "light"     "light"     "disk"      "disk"     
 [9607] "light"     "changing"  "unknown"   "other"     "light"     "light"    
 [9613] "disk"      "unknown"   "circle"    "unknown"   "oval"      "oval"     
 [9619] NA          "triangle"  "other"     "other"     "light"     "flash"    
 [9625] "disk"      "sphere"    "other"     "cone"      "light"     "cylinder" 
 [9631] "diamond"   "unknown"   "triangle"  "cigar"     "cylinder"  "circle"   
 [9637] "cigar"     "other"     "unknown"   "light"     "triangle"  "light"    
 [9643] "unknown"   "other"     "light"     "formation" "oval"      "cylinder" 
 [9649] "circle"    "circle"    "fireball"  "triangle"  "fireball"  "light"    
 [9655] "fireball"  "changing"  "triangle"  "circle"    "cigar"     "fireball" 
 [9661] "light"     "oval"      "circle"    "circle"    "oval"      "egg"      
 [9667] "flash"     "light"     "circle"    "sphere"    "fireball"  "light"    
 [9673] "light"     "cone"      "oval"      "disk"      "formation" "circle"   
 [9679] "other"     "sphere"    "formation" "other"     "disk"      "circle"   
 [9685] "fireball"  "oval"      "cigar"     "circle"    "circle"    "unknown"  
 [9691] "light"     "triangle"  "sphere"    "fireball"  "unknown"   "other"    
 [9697] "cigar"     "flash"     "fireball"  "disk"      "light"     "light"    
 [9703] "unknown"   "sphere"    "light"     "light"     "other"     NA         
 [9709] "flash"     "changing"  "light"     "other"     "disk"      "disk"     
 [9715] "light"     "unknown"   "triangle"  "sphere"    "cigar"     "other"    
 [9721] "circle"    "triangle"  "triangle"  "triangle"  "other"     "unknown"  
 [9727] "fireball"  "circle"    "other"     "light"     "light"     "cone"     
 [9733] "rectangle" "sphere"    "sphere"    "cylinder"  "light"     "circle"   
 [9739] "sphere"    "circle"    "sphere"    "formation" "sphere"    "changing" 
 [9745] "light"     "fireball"  "teardrop"  "light"     "sphere"    NA         
 [9751] "circle"    "triangle"  "circle"    "teardrop"  "triangle"  "sphere"   
 [9757] "fireball"  "circle"    "circle"    "triangle"  "light"     "circle"   
 [9763] "changing"  "unknown"   "circle"    "triangle"  "diamond"   "fireball" 
 [9769] "circle"    "light"     "cross"     "sphere"    "fireball"  "cylinder" 
 [9775] "circle"    "unknown"   "light"     "teardrop"  "cylinder"  "triangle" 
 [9781] "light"     "circle"    "formation" "sphere"    "oval"      "fireball" 
 [9787] "light"     "circle"    "circle"    "diamond"   "other"     "unknown"  
 [9793] "triangle"  "sphere"    "unknown"   "light"     "other"     "light"    
 [9799] "disk"      "circle"    "circle"    "formation" "triangle"  NA         
 [9805] NA          "triangle"  "triangle"  "light"     "light"     "light"    
 [9811] NA          "light"     "flash"     "unknown"   "rectangle" "disk"     
 [9817] "circle"    "formation" "flash"     "light"     "egg"       "triangle" 
 [9823] "teardrop"  "changing"  "rectangle" "oval"      "diamond"   "fireball" 
 [9829] "triangle"  "triangle"  "circle"    "circle"    "other"     "circle"   
 [9835] "egg"       "triangle"  "unknown"   "egg"       "other"     "triangle" 
 [9841] "unknown"   "light"     "unknown"   "triangle"  "oval"      "diamond"  
 [9847] "triangle"  "cigar"     "fireball"  "formation" "light"     "light"    
 [9853] "disk"      "other"     "triangle"  "light"     "unknown"   "rectangle"
 [9859] "changing"  "other"     "oval"      "light"     "sphere"    "light"    
 [9865] "sphere"    "oval"      "light"     "light"     "oval"      "triangle" 
 [9871] "light"     "light"     "light"     "chevron"   "other"     "chevron"  
 [9877] "oval"      "unknown"   "circle"    "fireball"  NA          "teardrop" 
 [9883] "other"     "circle"    "other"     "unknown"   "triangle"  "rectangle"
 [9889] "diamond"   "light"     "oval"      "disk"      "unknown"   "other"    
 [9895] "triangle"  "triangle"  "other"     "disk"      "fireball"  "unknown"  
 [9901] "formation" "triangle"  "light"     "light"     "oval"      "unknown"  
 [9907] "changing"  "other"     "fireball"  "unknown"   "diamond"   "fireball" 
 [9913] "triangle"  "circle"    "disk"      "cross"     "oval"      "fireball" 
 [9919] "circle"    "unknown"   "light"     "unknown"   "light"     "unknown"  
 [9925] "fireball"  "fireball"  "triangle"  "light"     "light"     "circle"   
 [9931] "light"     "light"     "fireball"  "fireball"  "unknown"   "changing" 
 [9937] "unknown"   "fireball"  "sphere"    "unknown"   "light"     "light"    
 [9943] "circle"    "other"     "fireball"  "formation" "changing"  "cross"    
 [9949] "sphere"    "fireball"  "sphere"    "light"     "other"     "fireball" 
 [9955] "circle"    "disk"      "light"     "sphere"    "triangle"  "oval"     
 [9961] "sphere"    "circle"    "egg"       "sphere"    "circle"    "cigar"    
 [9967] "formation" "light"     "oval"      "fireball"  NA          "unknown"  
 [9973] "fireball"  "oval"      "sphere"    "sphere"    "circle"    "rectangle"
 [9979] "fireball"  "fireball"  "formation" "light"     "triangle"  "triangle" 
 [9985] "triangle"  "circle"    "diamond"   "fireball"  "triangle"  "oval"     
 [9991] "light"     "disk"      "light"     "cigar"     "cigar"     "light"    
 [9997] "disk"      "oval"      "flash"     "flash"     "light"     "triangle" 
[10003] "unknown"   "fireball"  "rectangle" "fireball"  "triangle"  "fireball" 
[10009] "formation" "triangle"  "light"     "triangle"  "circle"    "fireball" 
[10015] "fireball"  "other"     "circle"    "disk"      "oval"      "rectangle"
[10021] "disk"      "fireball"  "changing"  "sphere"    "triangle"  "other"    
[10027] "unknown"   "other"     "rectangle" NA          NA          "sphere"   
[10033] NA          "fireball"  "other"     "formation" "triangle"  "formation"
[10039] "triangle"  "disk"      "formation" "rectangle" "circle"    "fireball" 
[10045] "formation" "formation" "formation" "formation" "formation" "formation"
[10051] "formation" "other"     "formation" "formation" "fireball"  "formation"
[10057] "formation" "sphere"    "delta"     "formation" "formation" "formation"
[10063] "formation" "formation" "formation" "fireball"  "formation" "fireball" 
[10069] "formation" "cylinder"  "light"     "flash"     "disk"      "fireball" 
[10075] "fireball"  "other"     "triangle"  "other"     "light"     "triangle" 
[10081] "oval"      "cone"      "unknown"   "light"     "unknown"   "circle"   
[10087] "unknown"   "changing"  "oval"      "triangle"  "unknown"   "unknown"  
[10093] "fireball"  "chevron"   "fireball"  "light"     NA          "triangle" 
[10099] "circle"    "sphere"    "triangle"  "triangle"  "triangle"  "chevron"  
[10105] "sphere"    "egg"       "unknown"   "oval"      "circle"    "circle"   
[10111] "unknown"   "sphere"    "triangle"  "circle"    "circle"    "rectangle"
[10117] "light"     "flash"     "light"     "cigar"     "changing"  "other"    
[10123] "light"     "formation" "formation" "formation" "flash"     "disk"     
[10129] "light"     "disk"      "circle"    "unknown"   "light"     "sphere"   
[10135] "fireball"  "flash"     "fireball"  "light"     "fireball"  "light"    
[10141] "circle"    "teardrop"  "light"     "light"     "fireball"  "fireball" 
[10147] "circle"    "light"     "unknown"   "formation" NA          "light"    
[10153] "oval"      "sphere"    "light"     NA          "cross"     "fireball" 
[10159] "circle"    "changing"  "triangle"  "triangle"  "circle"    "circle"   
[10165] "triangle"  "light"     "sphere"    NA          "circle"    "cigar"    
[10171] "other"     "fireball"  "chevron"   "chevron"   "other"     "fireball" 
[10177] "light"     "sphere"    "disk"      "flash"     "circle"    "circle"   
[10183] "triangle"  "light"     "other"     "flash"     "triangle"  "diamond"  
[10189] "light"     "circle"    "oval"      "fireball"  "cross"     "light"    
[10195] "cylinder"  "unknown"   "light"     "circle"    "cross"     "light"    
[10201] "circle"    "fireball"  "fireball"  "unknown"   "triangle"  "triangle" 
[10207] "other"     "fireball"  "oval"      "unknown"   "light"     "triangle" 
[10213] "light"     "light"     "light"     "fireball"  "formation" "unknown"  
[10219] "formation" "sphere"    "light"     "sphere"    "formation" "fireball" 
[10225] "triangle"  "sphere"    "fireball"  "fireball"  "fireball"  "formation"
[10231] "triangle"  "fireball"  "light"     "fireball"  "unknown"   "light"    
[10237] "light"     "triangle"  "circle"    "light"     "fireball"  "light"    
[10243] "light"     "circle"    "disk"      "rectangle" "fireball"  "other"    
[10249] "triangle"  "circle"    "diamond"   "flash"     "cigar"     "other"    
[10255] "circle"    "formation" "circle"    "triangle"  "diamond"   "circle"   
[10261] "fireball"  "cigar"     "circle"    "light"     "flash"     "sphere"   
[10267] "formation" "formation" "circle"    "circle"    "circle"    "disk"     
[10273] "circle"    "unknown"   NA          "sphere"    "disk"      "circle"   
[10279] "sphere"    "disk"      NA          "oval"      "circle"    "triangle" 
[10285] "unknown"   "sphere"    "sphere"    "disk"      "sphere"    "disk"     
[10291] "disk"      "light"     "disk"      NA          "disk"      "cylinder" 
[10297] "changing"  "circle"    "disk"      "light"     "teardrop"  "circle"   
[10303] "formation" "disk"      "oval"      "disk"      "circle"    "formation"
[10309] "disk"      "fireball"  "oval"      "disk"      "circle"    "disk"     
[10315] "cigar"     "disk"      "sphere"    "triangle"  "changing"  "circle"   
[10321] "light"     "circle"    "light"     "light"     "other"     "circle"   
[10327] "unknown"   "other"     "other"     "sphere"    "light"     "other"    
[10333] NA          "triangle"  "flash"     "rectangle" "triangle"  "unknown"  
[10339] "disk"      "disk"      "disk"      "triangle"  "disk"      "disk"     
[10345] "other"     "diamond"   "disk"      "unknown"   "sphere"    "light"    
[10351] "triangle"  "oval"      "fireball"  "unknown"   "light"     "unknown"  
[10357] "light"     "oval"      "triangle"  "disk"      "unknown"   "formation"
[10363] "oval"      "light"     "triangle"  "triangle"  "disk"      "egg"      
[10369] "rectangle" "triangle"  "disk"      "triangle"  "light"     "flash"    
[10375] "fireball"  "other"     NA          "triangle"  "fireball"  "circle"   
[10381] "other"     "formation" "oval"      "light"     "diamond"   NA         
[10387] "light"     "sphere"    "triangle"  "other"     "other"     "triangle" 
[10393] "sphere"    "triangle"  "other"     "unknown"   "light"     "sphere"   
[10399] "triangle"  "triangle"  "circle"    "circle"    "sphere"    "fireball" 
[10405] "light"     "cylinder"  "rectangle" "diamond"   "disk"      "oval"     
[10411] "disk"      "light"     "diamond"   "light"     "light"     "unknown"  
[10417] "triangle"  "fireball"  "other"     "light"     "circle"    "cylinder" 
[10423] "other"     "sphere"    "fireball"  NA          "other"     "light"    
[10429] "light"     "circle"    "light"     "triangle"  "diamond"   "triangle" 
[10435] "other"     "flash"     "other"     "other"     "flash"     "circle"   
[10441] "unknown"   "triangle"  "triangle"  "diamond"   "triangle"  "light"    
[10447] "light"     "triangle"  "oval"      "rectangle" "other"     "formation"
[10453] "light"     "fireball"  "fireball"  "sphere"    "unknown"   "triangle" 
[10459] NA          "diamond"   "other"     "sphere"    "unknown"   "light"    
[10465] "rectangle" "light"     "fireball"  "other"     "light"     "unknown"  
[10471] "light"     "light"     "flash"     "light"     "egg"       "light"    
[10477] "other"     "flash"     "triangle"  "triangle"  "triangle"  "circle"   
[10483] "light"     "light"     "diamond"   "formation" "light"     "light"    
[10489] "sphere"    "oval"      "light"     "other"     "teardrop"  "oval"     
[10495] "other"     "disk"      "disk"      "light"     "fireball"  "unknown"  
[10501] "unknown"   "formation" "formation" "egg"       "circle"    "diamond"  
[10507] "light"     "triangle"  "rectangle" "light"     "triangle"  "triangle" 
[10513] "unknown"   "diamond"   "circle"    "diamond"   "light"     "triangle" 
[10519] "formation" "triangle"  "disk"      "other"     "cylinder"  "disk"     
[10525] "changing"  "light"     "disk"      "chevron"   "triangle"  "light"    
[10531] "circle"    "light"     "circle"    "chevron"   "other"     "light"    
[10537] "triangle"  "triangle"  "other"     "circle"    "light"     "other"    
[10543] "formation" "light"     "unknown"   "triangle"  "light"     "circle"   
[10549] "egg"       "fireball"  "disk"      "triangle"  "sphere"    "light"    
[10555] "formation" "fireball"  "fireball"  "circle"    "light"     "circle"   
[10561] "fireball"  "oval"      "light"     "sphere"    "triangle"  "circle"   
[10567] "disk"      "light"     "light"     "fireball"  "light"     "changing" 
[10573] "chevron"   "changing"  "teardrop"  "other"     "formation" "disk"     
[10579] "light"     "triangle"  "unknown"   "sphere"    "other"     "disk"     
[10585] "changing"  "formation" "light"     "triangle"  "cigar"     "sphere"   
[10591] "circle"    "circle"    "light"     "changing"  "disk"      "circle"   
[10597] "light"     "fireball"  "disk"      "triangle"  "cigar"     "circle"   
[10603] "teardrop"  "fireball"  "chevron"   "chevron"   "triangle"  "triangle" 
[10609] "egg"       "light"     "other"     "rectangle" "disk"      "other"    
[10615] "oval"      "oval"      "light"     "unknown"   "disk"      "light"    
[10621] "light"     "circle"    NA          "formation" "disk"      "circle"   
[10627] "rectangle" NA          "other"     NA          "other"     "triangle" 
[10633] "light"     "triangle"  "disk"      "changing"  "oval"      "light"    
[10639] "triangle"  "light"     "light"     "other"     "fireball"  "fireball" 
[10645] "chevron"   "cigar"     "light"     "sphere"    "rectangle" "cigar"    
[10651] "circle"    "fireball"  "triangle"  "triangle"  "formation" "fireball" 
[10657] "sphere"    "other"     "sphere"    "sphere"    "light"     "oval"     
[10663] "fireball"  "circle"    "triangle"  "light"     "circle"    "light"    
[10669] "oval"      "fireball"  "sphere"    "light"     "light"     "triangle" 
[10675] "fireball"  "rectangle" "sphere"    "other"     "other"     "diamond"  
[10681] "light"     "changing"  "circle"    "triangle"  "light"     "other"    
[10687] "circle"    "oval"      "other"     "fireball"  "fireball"  "fireball" 
[10693] "sphere"    "fireball"  "unknown"   "oval"      "circle"    "sphere"   
[10699] "sphere"    "fireball"  "circle"    "light"     "circle"    "chevron"  
[10705] "other"     "diamond"   "unknown"   "fireball"  "unknown"   "cross"    
[10711] "light"     "unknown"   "sphere"    "light"     "fireball"  "unknown"  
[10717] "sphere"    "other"     "teardrop"  "triangle"  NA          "light"    
[10723] "light"     "triangle"  NA          NA          NA          NA         
[10729] NA          NA          NA          NA          NA          NA         
[10735] NA          NA          "round"     NA          "triangle"  "other"    
[10741] "unknown"   "circle"    "fireball"  "fireball"  "other"     "triangle" 
[10747] "other"     "fireball"  "triangle"  "egg"       "light"     "unknown"  
[10753] "other"     "formation" "flash"     "chevron"   "flash"     "disk"     
[10759] "cylinder"  "fireball"  "fireball"  "cigar"     "fireball"  "fireball" 
[10765] NA          "triangle"  "circle"    "fireball"  NA          "circle"   
[10771] "rectangle" "fireball"  "fireball"  "teardrop"  "fireball"  "fireball" 
[10777] "fireball"  "disk"      "fireball"  "formation" "oval"      "fireball" 
[10783] "fireball"  "fireball"  "fireball"  "fireball"  "fireball"  "circle"   
[10789] "fireball"  "formation" "fireball"  "oval"      "chevron"   "fireball" 
[10795] "fireball"  NA          "light"     "light"     "fireball"  "fireball" 
[10801] "teardrop"  "fireball"  "cigar"     "fireball"  "fireball"  "fireball" 
[10807] "fireball"  "fireball"  "circle"    "other"     "fireball"  "fireball" 
[10813] "fireball"  "light"     "fireball"  "fireball"  "light"     "light"    
[10819] "fireball"  "fireball"  "fireball"  "light"     "changing"  "triangle" 
[10825] "light"     "light"     "changing"  "fireball"  NA          "triangle" 
[10831] "light"     "fireball"  "fireball"  "light"     "other"     "fireball" 
[10837] "unknown"   "unknown"   "fireball"  "formation" "fireball"  "fireball" 
[10843] "light"     "fireball"  "formation" "triangle"  "cigar"     "formation"
[10849] "fireball"  "fireball"  "fireball"  "fireball"  "fireball"  "fireball" 
[10855] "fireball"  NA          "sphere"    "fireball"  "circle"    "circle"   
[10861] "changing"  "formation" "other"     "fireball"  "fireball"  "changing" 
[10867] "fireball"  "fireball"  "light"     "fireball"  "formation" "light"    
[10873] "fireball"  "circle"    "other"     "fireball"  "cigar"     "flash"    
[10879] "formation" "other"     "unknown"   "light"     "light"     "other"    
[10885] "fireball"  "other"     "formation" "fireball"  "fireball"  "teardrop" 
[10891] "circle"    "fireball"  "fireball"  "circle"    "fireball"  "fireball" 
[10897] "fireball"  "other"     "disk"      "circle"    "light"     "cigar"    
[10903] "formation" "formation" "formation" "fireball"  "light"     "light"    
[10909] "fireball"  "formation" "cigar"     "formation" "fireball"  NA         
[10915] "fireball"  "fireball"  "fireball"  "fireball"  "fireball"  "egg"      
[10921] "formation" "formation" "fireball"  NA          "triangle"  "fireball" 
[10927] "sphere"    "light"     "formation" "formation" "triangle"  "fireball" 
[10933] "light"     "chevron"   "other"     "fireball"  "fireball"  "teardrop" 
[10939] "other"     "other"     "light"     "light"     "other"     "chevron"  
[10945] "rectangle" "light"     "egg"       "diamond"   "other"     "sphere"   
[10951] "fireball"  "other"     "circle"    "oval"      "chevron"   "cigar"    
[10957] "triangle"  "teardrop"  "formation" "triangle"  "triangle"  "light"    
[10963] "triangle"  "sphere"    "formation" "sphere"    "cylinder"  "unknown"  
[10969] "disk"      "light"     "disk"      "other"     "light"     "other"    
[10975] "oval"      "other"     "light"     "light"     "unknown"   "circle"   
[10981] "other"     "light"     "circle"    "triangle"  "light"     "triangle" 
[10987] "other"     "circle"    "disk"      "triangle"  "light"     "oval"     
[10993] "light"     "triangle"  "cigar"     "disk"      "formation" "triangle" 
[10999] "disk"      "disk"      "light"     "triangle"  "sphere"    "flash"    
[11005] "disk"      "cylinder"  "changing"  "sphere"    "oval"      "unknown"  
[11011] "rectangle" "unknown"   "disk"      "changing"  "unknown"   "light"    
[11017] "rectangle" "changing"  "circle"    "sphere"    "circle"    "other"    
[11023] "unknown"   "circle"    "light"     "fireball"  "circle"    "light"    
[11029] "other"     "light"     "chevron"   "light"     "cross"     "flash"    
[11035] "cigar"     "disk"      "fireball"  "light"     "circle"    "circle"   
[11041] "triangle"  "light"     "chevron"   "other"     "cylinder"  "light"    
[11047] "triangle"  "light"     "changing"  "light"     "circle"    "light"    
[11053] "changing"  "other"     "unknown"   "formation" "light"     "disk"     
[11059] "unknown"   "triangle"  "light"     "sphere"    "fireball"  "light"    
[11065] "circle"    "circle"    "light"     "circle"    "unknown"   "unknown"  
[11071] "circle"    "other"     "oval"      "unknown"   "flash"     "formation"
[11077] "light"     "other"     "triangle"  "circle"    "unknown"   "unknown"  
[11083] "light"     "flash"     "sphere"    "triangle"  "flash"     "teardrop" 
[11089] "fireball"  "triangle"  "unknown"   "other"     "light"     "circle"   
[11095] "sphere"    "flash"     "unknown"   "circle"    "light"     "fireball" 
[11101] "unknown"   "diamond"   "diamond"   "other"     "fireball"  "circle"   
[11107] "circle"    "fireball"  "fireball"  "light"     "unknown"   "circle"   
[11113] "light"     "fireball"  "sphere"    "fireball"  "light"     "oval"     
[11119] "fireball"  NA          "unknown"   "sphere"    "circle"    "formation"
[11125] "changing"  "light"     "light"     "fireball"  "fireball"  "fireball" 
[11131] "light"     "circle"    "sphere"    "sphere"    "unknown"   "other"    
[11137] "fireball"  "formation" "light"     "light"     "circle"    "unknown"  
[11143] "fireball"  "cigar"     "sphere"    "circle"    "fireball"  "sphere"   
[11149] "fireball"  "formation" "unknown"   "sphere"    "disk"      "light"    
[11155] "disk"      "sphere"    "other"     "light"     "disk"      "fireball" 
[11161] "cigar"     "light"     NA          NA          "chevron"   "other"    
[11167] NA          NA          NA          NA          NA          NA         
[11173] NA          NA          NA          NA          NA          NA         
[11179] NA          NA          NA          NA          "light"     NA         
[11185] "other"     "oval"      "triangle"  "cigar"     NA          "triangle" 
[11191] "sphere"    "fireball"  "light"     "disk"      "triangle"  "circle"   
[11197] "triangle"  "flash"     "fireball"  "triangle"  "light"     "triangle" 
[11203] "circle"    "flash"     "egg"       "formation" "light"     "sphere"   
[11209] "triangle"  "changing"  "other"     "other"     "circle"    "light"    
[11215] "triangle"  "sphere"    "sphere"    "light"     "cylinder"  "triangle" 
[11221] "unknown"   "teardrop"  "triangle"  "other"     "unknown"   "unknown"  
[11227] "light"     "triangle"  "oval"      "circle"    "rectangle" "light"    
[11233] "other"     "light"     "changing"  "other"     "light"     "triangle" 
[11239] "triangle"  "unknown"   "circle"    "light"     "changing"  "cylinder" 
[11245] "light"     "formation" "unknown"   "light"     "fireball"  "light"    
[11251] "other"     "other"     "unknown"   "other"     "light"     "formation"
[11257] "unknown"   "light"     "light"     "sphere"    "light"     "circle"   
[11263] "formation" "circle"    "flash"     "triangle"  "teardrop"  "light"    
[11269] "light"     "changing"  "light"     "unknown"   "unknown"   "other"    
[11275] "oval"      "other"     "other"     "triangle"  "cigar"     "light"    
[11281] "circle"    "triangle"  "circle"    "light"     "triangle"  "circle"   
[11287] "triangle"  "other"     "fireball"  "fireball"  "other"     "light"    
[11293] "circle"    "light"     "changing"  "oval"      "unknown"   "light"    
[11299] "oval"      "other"     "unknown"   "light"     "oval"      "circle"   
[11305] "flash"     "sphere"    "triangle"  "chevron"   "sphere"    "light"    
[11311] "disk"      "triangle"  "light"     "circle"    "circle"    "formation"
[11317] "formation" "other"     "fireball"  "disk"      "chevron"   "oval"     
[11323] "oval"      "unknown"   "sphere"    "light"     "unknown"   "light"    
[11329] "unknown"   "unknown"   "diamond"   "other"     "fireball"  "flash"    
[11335] "unknown"   "disk"      "other"     "diamond"   "sphere"    "sphere"   
[11341] "light"     "triangle"  "triangle"  "diamond"   "triangle"  "fireball" 
[11347] "disk"      "unknown"   "unknown"   "unknown"   "circle"    "light"    
[11353] "other"     "fireball"  "fireball"  "disk"      "sphere"    "other"    
[11359] "triangle"  "triangle"  "disk"      "changing"  "triangle"  "fireball" 
[11365] "light"     "other"     "cigar"     "triangle"  "triangle"  "other"    
[11371] "triangle"  "circle"    "light"     "triangle"  "light"     "light"    
[11377] "circle"    "disk"      "sphere"    "circle"    "disk"      "unknown"  
[11383] "circle"    "triangle"  "fireball"  "fireball"  "fireball"  "circle"   
[11389] "fireball"  "formation" "circle"    "flash"     "light"     "light"    
[11395] "fireball"  "unknown"   "unknown"   "fireball"  "sphere"    "triangle" 
[11401] "light"     "light"     "oval"      "circle"    "light"     "sphere"   
[11407] "diamond"   "sphere"    "oval"      "light"     "light"     "sphere"   
[11413] "circle"    "oval"      "unknown"   "circle"    "circle"    "light"    
[11419] "fireball"  "light"     "fireball"  "fireball"  "light"     "light"    
[11425] "light"     "light"     "light"     "fireball"  "sphere"    "cone"     
[11431] "other"     "light"     NA          "triangle"  "formation" NA         
[11437] NA          NA          NA          "delta"     "light"     "rectangle"
[11443] "triangle"  "triangle"  "triangle"  "light"     "disk"      "unknown"  
[11449] "light"     "triangle"  "triangle"  "triangle"  "triangle"  "other"    
[11455] "circle"    "formation" "light"     "light"     "disk"      "light"    
[11461] "light"     "light"     "other"     "triangle"  "light"     "triangle" 
[11467] "light"     "light"     "disk"      "unknown"   "circle"    "light"    
[11473] "oval"      "circle"    "triangle"  "sphere"    "disk"      "light"    
[11479] "triangle"  "other"     "circle"    "triangle"  "triangle"  "triangle" 
[11485] "triangle"  "cigar"     "diamond"   "unknown"   "circle"    "other"    
[11491] "disk"      "changing"  "formation" "formation" "circle"    "other"    
[11497] "cylinder"  "circle"    "chevron"   "triangle"  "cylinder"  "changing" 
[11503] "light"     "chevron"   "flash"     "sphere"    "chevron"   "changing" 
[11509] "sphere"    "formation" "other"     "sphere"    "triangle"  "light"    
[11515] "triangle"  "circle"    "circle"    "unknown"   "circle"    "other"    
[11521] "other"     "triangle"  "unknown"   "light"     "chevron"   "light"    
[11527] "cigar"     "unknown"   "oval"      "cigar"     "other"     "light"    
[11533] "sphere"    "changing"  "triangle"  "changing"  "oval"      "light"    
[11539] "unknown"   "light"     "triangle"  "circle"    "cylinder"  "disk"     
[11545] "sphere"    "light"     "unknown"   "changing"  "unknown"   "light"    
[11551] "light"     "triangle"  "light"     "disk"      "disk"      "fireball" 
[11557] "triangle"  "unknown"   "light"     "light"     "unknown"   "cigar"    
[11563] "sphere"    "unknown"   "triangle"  "circle"    "disk"      "fireball" 
[11569] "sphere"    "circle"    "chevron"   "cigar"     "light"     "formation"
[11575] "triangle"  "flash"     "other"     "unknown"   "light"     "triangle" 
[11581] "other"     "light"     "fireball"  "sphere"    "circle"    "triangle" 
[11587] "other"     "fireball"  "teardrop"  "triangle"  "light"     "sphere"   
[11593] "disk"      "circle"    "circle"    "unknown"   "oval"      "cone"     
[11599] "disk"      "triangle"  "sphere"    "rectangle" "circle"    "circle"   
[11605] "circle"    "light"     "triangle"  "other"     "light"     "fireball" 
[11611] "triangle"  "formation" "other"     "light"     "flash"     "triangle" 
[11617] "light"     "circle"    "formation" "diamond"   "circle"    "light"    
[11623] "formation" "cylinder"  "unknown"   "circle"    "oval"      "light"    
[11629] "teardrop"  "circle"    "other"     "sphere"    "light"     "light"    
[11635] "cigar"     "light"     "circle"    "flash"     "fireball"  "light"    
[11641] "unknown"   "fireball"  "triangle"  NA          "teardrop"  "disk"     
[11647] "other"     "unknown"   "other"     "changing"  "fireball"  "disk"     
[11653] "changing"  "light"     "changing"  "light"     "fireball"  "fireball" 
[11659] "flash"     "formation" "circle"    "triangle"  "light"     "triangle" 
[11665] "fireball"  "circle"    "rectangle" "chevron"   "fireball"  "triangle" 
[11671] "other"     NA          "cigar"     "circle"    "light"     "light"    
[11677] "oval"      "cone"      "triangle"  "other"     "disk"      "fireball" 
[11683] "light"     "changing"  "sphere"    "light"     "sphere"    "triangle" 
[11689] "circle"    "cylinder"  "light"     "sphere"    "disk"      NA         
[11695] "other"     "circle"    "disk"      "other"     NA          NA         
[11701] NA          NA          NA          NA          NA          NA         
[11707] NA          NA          "circle"    NA          "circle"    "oval"     
[11713] "sphere"    "light"     "formation" "light"     "formation" "triangle" 
[11719] "other"     "cylinder"  "oval"      "fireball"  "teardrop"  "other"    
[11725] "light"     "other"     "triangle"  "circle"    "unknown"   "formation"
[11731] "disk"      "sphere"    "circle"    "chevron"   "triangle"  "other"    
[11737] "unknown"   "light"     "rectangle" "other"     "changing"  "cross"    
[11743] "changing"  "circle"    "formation" "egg"       "triangle"  "formation"
[11749] "unknown"   "triangle"  "disk"      "formation" "formation" "triangle" 
[11755] "other"     "light"     "chevron"   "light"     "chevron"   "egg"      
[11761] "other"     "changing"  "cylinder"  "light"     "diamond"   "triangle" 
[11767] "other"     "triangle"  "triangle"  "oval"      "triangle"  "triangle" 
[11773] "triangle"  "unknown"   "light"     "light"     "light"     "light"    
[11779] "other"     "light"     "sphere"    "formation" "light"     NA         
[11785] "sphere"    "triangle"  "triangle"  "light"     "light"     "triangle" 
[11791] "triangle"  "light"     "formation" "light"     "triangle"  "light"    
[11797] "unknown"   "sphere"    "cross"     "light"     "light"     "diamond"  
[11803] "other"     "light"     "disk"      "circle"    "cigar"     "light"    
[11809] "chevron"   "unknown"   "sphere"    "light"     "light"     "circle"   
[11815] "disk"      "sphere"    "unknown"   "disk"      "cylinder"  "light"    
[11821] "fireball"  "formation" "other"     "unknown"   "other"     "other"    
[11827] "light"     "triangle"  "other"     "other"     "light"     "light"    
[11833] "cigar"     "egg"       "unknown"   "light"     "light"     "triangle" 
[11839] "triangle"  "light"     "rectangle" "other"     "light"     "formation"
[11845] "cigar"     "light"     "triangle"  "triangle"  "triangle"  "unknown"  
[11851] "cross"     "light"     "cigar"     "light"     "cross"     NA         
[11857] "triangle"  "triangle"  "light"     NA          "flash"     "circle"   
[11863] "circle"    "oval"      "circle"    "fireball"  "oval"      "unknown"  
[11869] "triangle"  "circle"    "triangle"  "unknown"   "triangle"  "formation"
[11875] "circle"    "triangle"  NA          "light"     "diamond"   "fireball" 
[11881] "cigar"     "fireball"  "flash"     "light"     "teardrop"  "other"    
[11887] "unknown"   "circle"    "triangle"  "light"     "other"     "rectangle"
[11893] "circle"    "cigar"     "disk"      "circle"    NA          "teardrop" 
[11899] "teardrop"  "light"     "teardrop"  "triangle"  "fireball"  "light"    
[11905] "sphere"    "light"     "light"     "sphere"    "fireball"  "triangle" 
[11911] "changing"  "cigar"     "circle"    "circle"    "cigar"     "cylinder" 
[11917] "sphere"    "sphere"    "circle"    "fireball"  "circle"    "other"    
[11923] "triangle"  "triangle"  "light"     "triangle"  "sphere"    NA         
[11929] "sphere"    "fireball"  "unknown"   "triangle"  "light"     "rectangle"
[11935] "triangle"  "fireball"  "circle"    "other"     "fireball"  "other"    
[11941] "disk"      "cigar"     "disk"      "cigar"     "circle"    "unknown"  
[11947] "unknown"   "cigar"     NA          "disk"      "circle"    "unknown"  
[11953] "unknown"   "disk"      "unknown"   "fireball"  "circle"    "circle"   
[11959] "sphere"    "disk"      "diamond"   "light"     "light"     "fireball" 
[11965] "disk"      "cigar"     "chevron"   "light"     "circle"    "circle"   
[11971] "sphere"    "light"     "unknown"   "circle"    "unknown"   "other"    
[11977] "triangle"  "unknown"   "disk"      "disk"      "light"     "oval"     
[11983] "oval"      "triangle"  "unknown"   "oval"      "cigar"     "disk"     
[11989] "light"     "sphere"    "cigar"     "disk"      "disk"      "disk"     
[11995] "sphere"    "disk"      "flash"     NA          "cylinder"  "sphere"   
[12001] "formation" "disk"      "disk"      NA          "disk"      "triangle" 
[12007] "sphere"    "disk"      "other"     "disk"      "disk"      "light"    
[12013] "other"     "other"     "diamond"   "sphere"    "disk"      "cylinder" 
[12019] "circle"    "unknown"   "other"     "other"     "unknown"   "other"    
[12025] "oval"      "oval"      "sphere"    "triangle"  "circle"    "light"    
[12031] "light"     "disk"      "triangle"  NA          "triangle"  NA         
[12037] "unknown"   "other"     "triangle"  "other"     NA          "triangle" 
[12043] NA          "other"     "light"     "triangle"  "unknown"   "unknown"  
[12049] "triangle"  NA          "oval"      "fireball"  "light"     "triangle" 
[12055] "changing"  "triangle"  "sphere"    "triangle"  NA          NA         
[12061] "light"     "light"     "unknown"   "triangle"  NA          "sphere"   
[12067] "triangle"  "sphere"    "triangle"  "circle"    "changing"  "oval"     
[12073] "rectangle" "chevron"   NA          "unknown"   "light"     "cross"    
[12079] "flash"     "light"     "triangle"  "light"     "disk"      "formation"
[12085] "flash"     "circle"    "diamond"   "disk"      "light"     "changing" 
[12091] "fireball"  "light"     "light"     NA          "disk"      "cylinder" 
[12097] "cigar"     "disk"      "light"     "light"     "unknown"   "fireball" 
[12103] "circle"    "triangle"  "disk"      "unknown"   NA          "sphere"   
[12109] "unknown"   "light"     "changing"  NA          "unknown"   "cylinder" 
[12115] "light"     "other"     "light"     "light"     "light"     "light"    
[12121] "light"     "formation" "flash"     "triangle"  "sphere"    "cigar"    
[12127] "egg"       "unknown"   "light"     "unknown"   "fireball"  "disk"     
[12133] "circle"    "disk"      "fireball"  "light"     NA          "disk"     
[12139] "light"     "circle"    "fireball"  "circle"    NA          NA         
[12145] "cigar"     "light"     "other"     "light"     "circle"    "teardrop" 
[12151] "fireball"  "light"     "changing"  "light"     "formation" "circle"   
[12157] "formation" "oval"      "fireball"  "sphere"    "triangle"  "unknown"  
[12163] "triangle"  "sphere"    "light"     "triangle"  "fireball"  "formation"
[12169] "triangle"  "light"     "circle"    "light"     "light"     "cone"     
[12175] "disk"      "unknown"   "disk"      "triangle"  "circle"    "light"    
[12181] "fireball"  "teardrop"  "oval"      "sphere"    "unknown"   "circle"   
[12187] "rectangle" "circle"    "light"     "light"     "triangle"  "light"    
[12193] "light"     "triangle"  "other"     "disk"      "formation" "triangle" 
[12199] "triangle"  "changing"  "fireball"  "light"     "disk"      "changing" 
[12205] "flash"     "changing"  NA          "triangle"  "other"     "circle"   
[12211] "formation" "diamond"   "unknown"   "oval"      "light"     "sphere"   
[12217] "cross"     "other"     "changing"  "rectangle" "flash"     "formation"
[12223] "egg"       "changing"  "light"     "disk"      "circle"    "formation"
[12229] "light"     "triangle"  "light"     "rectangle" "oval"      "light"    
[12235] "light"     "unknown"   NA          "changing"  "fireball"  "other"    
[12241] "other"     "diamond"   "diamond"   "circle"    "triangle"  "sphere"   
[12247] "other"     "circle"    "light"     "circle"    "fireball"  "formation"
[12253] "light"     "fireball"  "formation" "circle"    "light"     "sphere"   
[12259] "light"     "oval"      "disk"      "light"     "unknown"   "other"    
[12265] "disk"      "other"     "disk"      "disk"      "circle"    "triangle" 
[12271] "changing"  "oval"      "light"     "disk"      "changing"  "triangle" 
[12277] "circle"    "light"     "unknown"   "unknown"   "oval"      "other"    
[12283] "circle"    "sphere"    "disk"      NA          "circle"    "light"    
[12289] "light"     "triangle"  "disk"      "formation" "light"     "fireball" 
[12295] "disk"      "light"     "light"     "light"     "light"     "formation"
[12301] "oval"      "light"     "light"     "light"     "sphere"    "formation"
[12307] "light"     "disk"      "unknown"   "changing"  "light"     "fireball" 
[12313] "other"     "light"     "unknown"   "changing"  "cigar"     "circle"   
[12319] "changing"  "circle"    "light"     "unknown"   "fireball"  "oval"     
[12325] "light"     "changing"  "cylinder"  "fireball"  "unknown"   "circle"   
[12331] "unknown"   "fireball"  "circle"    "other"     "diamond"   "light"    
[12337] "sphere"    "light"     "oval"      "sphere"    "diamond"   "changing" 
[12343] "unknown"   "light"     "circle"    "light"     "circle"    "disk"     
[12349] "flash"     "light"     "sphere"    "circle"    "fireball"  "other"    
[12355] "other"     "unknown"   "other"     "fireball"  "sphere"    "cigar"    
[12361] "cigar"     "fireball"  "fireball"  "unknown"   "other"     "circle"   
[12367] "oval"      "circle"    "circle"    "light"     "light"     "light"    
[12373] "circle"    "circle"    "light"     "triangle"  "triangle"  "light"    
[12379] "triangle"  "light"     "light"     "unknown"   "light"     "fireball" 
[12385] "formation" "light"     "formation" "other"     "light"     "sphere"   
[12391] "triangle"  "circle"    "diamond"   "fireball"  "sphere"    "oval"     
[12397] "light"     "formation" "light"     "fireball"  "circle"    "disk"     
[12403] "unknown"   "chevron"   "circle"    "sphere"    "unknown"   "other"    
[12409] "sphere"    "fireball"  NA          "circle"    "sphere"    "triangle" 
[12415] "triangle"  "triangle"  "light"     "sphere"    "light"     "diamond"  
[12421] "changing"  "rectangle" "circle"    "unknown"   "fireball"  "oval"     
[12427] "circle"    "fireball"  "light"     "light"     "circle"    "light"    
[12433] "sphere"    "circle"    "fireball"  "fireball"  "triangle"  "fireball" 
[12439] "sphere"    "triangle"  "circle"    "fireball"  "circle"    "sphere"   
[12445] "circle"    "sphere"    "formation" "unknown"   "formation" "circle"   
[12451] "other"     "light"     "light"     "triangle"  "rectangle" "changing" 
[12457] "circle"    "oval"      "cylinder"  "oval"      "cylinder"  "sphere"   
[12463] "other"     "sphere"    "cigar"     "light"     "unknown"   "fireball" 
[12469] "light"     "fireball"  "sphere"    "circle"    "other"     "oval"     
[12475] "fireball"  "sphere"    "circle"    "light"     "sphere"    "oval"     
[12481] "oval"      "light"     "circle"    "fireball"  "fireball"  "oval"     
[12487] "sphere"    "circle"    "circle"    "changing"  "light"     "light"    
[12493] "circle"    "disk"      "circle"    "light"     "light"     "triangle" 
[12499] "unknown"   "light"     "triangle"  "unknown"   "circle"    "oval"     
[12505] "flash"     "fireball"  "light"     "fireball"  "fireball"  "fireball" 
[12511] "circle"    "light"     "disk"      "light"     "unknown"   "fireball" 
[12517] "egg"       "sphere"    "unknown"   "triangle"  "triangle"  "other"    
[12523] "diamond"   "circle"    "light"     "light"     "unknown"   "circle"   
[12529] "light"     "other"     "unknown"   "light"     "circle"    "light"    
[12535] "cylinder"  "sphere"    "sphere"    "fireball"  "light"     "cylinder" 
[12541] "light"     "sphere"    "cylinder"  "sphere"    "circle"    "unknown"  
[12547] "disk"      NA          "sphere"    "oval"      "triangle"  "other"    
[12553] "other"     "fireball"  "formation" "disk"      "changing"  "sphere"   
[12559] "fireball"  "teardrop"  "circle"    "formation" "light"     "oval"     
[12565] "triangle"  "circle"    "cone"      "unknown"   "light"     "fireball" 
[12571] "sphere"    "light"     "circle"    "fireball"  "fireball"  "circle"   
[12577] "other"     "light"     "unknown"   "disk"      "light"     "light"    
[12583] "sphere"    "egg"       "fireball"  "formation" "fireball"  "cone"     
[12589] "triangle"  "light"     "sphere"    "sphere"    "cylinder"  "formation"
[12595] "fireball"  "unknown"   "fireball"  "fireball"  "light"     "oval"     
[12601] "disk"      "oval"      "fireball"  "light"     "circle"    "fireball" 
[12607] "formation" "light"     "triangle"  "formation" "light"     "fireball" 
[12613] "oval"      "fireball"  "unknown"   "diamond"   "fireball"  "changing" 
[12619] "other"     "other"     "circle"    "light"     "circle"    NA         
[12625] "sphere"    "circle"    "unknown"   "circle"    "light"     "light"    
[12631] "unknown"   "other"     "circle"    "circle"    "light"     "oval"     
[12637] "sphere"    "sphere"    "light"     "disk"      "formation" "light"    
[12643] "egg"       "light"     "formation" "circle"    "circle"    "formation"
[12649] "circle"    "sphere"    "light"     "circle"    "light"     "light"    
[12655] "circle"    "triangle"  "triangle"  "fireball"  "sphere"    "light"    
[12661] "sphere"    "circle"    "light"     "flash"     "circle"    "unknown"  
[12667] "fireball"  "light"     "circle"    "fireball"  "sphere"    "sphere"   
[12673] "circle"    "fireball"  "flash"     "unknown"   "light"     "sphere"   
[12679] "light"     "fireball"  "oval"      "formation" "circle"    "circle"   
[12685] "circle"    "circle"    "egg"       "fireball"  "fireball"  "other"    
[12691] "fireball"  "light"     "changing"  "circle"    "fireball"  "egg"      
[12697] "formation" "other"     "rectangle" "fireball"  "formation" "formation"
[12703] "light"     "fireball"  "unknown"   "circle"    "circle"    "egg"      
[12709] "sphere"    "fireball"  "triangle"  "unknown"   "sphere"    "light"    
[12715] "circle"    "circle"    "circle"    "fireball"  "light"     "disk"     
[12721] "unknown"   "triangle"  "oval"      "oval"      "unknown"   "light"    
[12727] "circle"    "light"     "other"     "oval"      "diamond"   "chevron"  
[12733] "sphere"    "light"     "light"     "circle"    "light"     "circle"   
[12739] "unknown"   "triangle"  "light"     "light"     "diamond"   "triangle" 
[12745] "sphere"    "sphere"    "other"     "light"     NA          NA         
[12751] "triangle"  NA          NA          NA          "light"     "diamond"  
[12757] "diamond"   "triangle"  "circle"    NA          NA          "oval"     
[12763] "other"     "disk"      "triangle"  "cone"      "triangle"  "fireball" 
[12769] "fireball"  "triangle"  "oval"      "fireball"  "triangle"  "disk"     
[12775] "flash"     "triangle"  "sphere"    "disk"      "fireball"  "fireball" 
[12781] "disk"      "formation" "changing"  "cylinder"  "other"     "fireball" 
[12787] "disk"      "light"     "other"     "changing"  "egg"       "triangle" 
[12793] "triangle"  "fireball"  "flash"     "chevron"   "chevron"   "triangle" 
[12799] "circle"    "other"     "oval"      "circle"    "sphere"    "fireball" 
[12805] "cigar"     "triangle"  "light"     "oval"      "oval"      "circle"   
[12811] "fireball"  "light"     "light"     "circle"    "other"     "unknown"  
[12817] "changing"  "other"     "circle"    "fireball"  "cylinder"  "triangle" 
[12823] "rectangle" "light"     "other"     "triangle"  "unknown"   "triangle" 
[12829] "changing"  "light"     "unknown"   "formation" "light"     "changing" 
[12835] "circle"    "changing"  "formation" "unknown"   "circle"    "other"    
[12841] "disk"      "light"     "light"     "light"     "other"     "circle"   
[12847] "light"     "light"     "light"     "unknown"   NA          "formation"
[12853] "fireball"  "light"     "triangle"  "light"     "triangle"  "other"    
[12859] "flash"     "circle"    "unknown"   "circle"    "other"     "circle"   
[12865] "oval"      "circle"    "triangle"  "unknown"   "light"     "light"    
[12871] "unknown"   "unknown"   NA          "flash"     "oval"      "light"    
[12877] "light"     "light"     "circle"    "other"     "light"     "circle"   
[12883] "formation" "rectangle" "sphere"    "circle"    "light"     "sphere"   
[12889] "unknown"   NA          "fireball"  NA          "fireball"  "circle"   
[12895] "formation" "fireball"  "rectangle" "rectangle" "other"     "light"    
[12901] "sphere"    "formation" "circle"    "sphere"    "changing"  "sphere"   
[12907] "rectangle" "unknown"   "light"     "unknown"   "sphere"    "disk"     
[12913] "circle"    NA          "other"     "fireball"  "light"     "light"    
[12919] "light"     "unknown"   "disk"      "circle"    NA          "triangle" 
[12925] "light"     "egg"       "light"     "flash"     "changing"  "oval"     
[12931] "circle"    "sphere"    "cone"      "circle"    "other"     "circle"   
[12937] "light"     "fireball"  "flash"     "light"     "light"     "light"    
[12943] NA          "fireball"  "fireball"  "flash"     "fireball"  "light"    
[12949] "light"     "circle"    "formation" "oval"      "light"     "circle"   
[12955] "fireball"  "light"     "oval"      "light"     "fireball"  "formation"
[12961] "oval"      "triangle"  "formation" "circle"    "triangle"  "light"    
[12967] "fireball"  "light"     "disk"      "unknown"   "cylinder"  "triangle" 
[12973] "disk"      "rectangle" "oval"      "light"     "disk"      NA         
[12979] NA          "triangle"  "circle"    "triangle"  "circle"    "sphere"   
[12985] "circle"    "light"     "sphere"    "other"     "unknown"   "light"    
[12991] "light"     "disk"      "other"     "light"     "unknown"   "triangle" 
[12997] "other"     "triangle"  "light"     "other"     "circle"    "light"    
[13003] "other"     "chevron"   "triangle"  "light"     "cigar"     "unknown"  
[13009] "cross"     "chevron"   "cross"     "light"     NA          "chevron"  
[13015] "cigar"     "disk"      "unknown"   "egg"       "formation" "light"    
[13021] "light"     "light"     "triangle"  "changing"  "circle"    "light"    
[13027] "teardrop"  "cigar"     "flash"     "diamond"   "light"     "disk"     
[13033] "disk"      "oval"      "changing"  "flash"     "flash"     "fireball" 
[13039] "other"     "other"     "changing"  "light"     "other"     "fireball" 
[13045] "cigar"     "triangle"  "light"     "oval"      "circle"    "flash"    
[13051] "diamond"   "triangle"  "circle"    "circle"    "cigar"     "light"    
[13057] "other"     "formation" "teardrop"  "cigar"     "circle"    "circle"   
[13063] "unknown"   "circle"    "circle"    "disk"      "other"     "light"    
[13069] "other"     "rectangle" "triangle"  "light"     "unknown"   "light"    
[13075] "light"     "rectangle" "chevron"   "teardrop"  "light"     "formation"
[13081] "triangle"  "light"     "circle"    "triangle"  "sphere"    "light"    
[13087] "fireball"  "light"     "light"     NA          "other"     "disk"     
[13093] "changing"  "unknown"   "light"     "disk"      "oval"      "light"    
[13099] "triangle"  "light"     "diamond"   "unknown"   "unknown"   "unknown"  
[13105] "circle"    "unknown"   NA          "fireball"  "triangle"  "fireball" 
[13111] "rectangle" "unknown"   "circle"    "oval"      "changing"  "unknown"  
[13117] "fireball"  "circle"    "light"     "rectangle" "fireball"  "triangle" 
[13123] "triangle"  "fireball"  "fireball"  "fireball"  "oval"      "circle"   
[13129] "circle"    "triangle"  "changing"  "triangle"  "fireball"  "sphere"   
[13135] "unknown"   "light"     "sphere"    "light"     "triangle"  "fireball" 
[13141] "other"     "sphere"    "unknown"   "fireball"  "unknown"   "fireball" 
[13147] "light"     NA          "disk"      "light"     "triangle"  "teardrop" 
[13153] "disk"      "triangle"  "light"     "other"     "disk"      "disk"     
[13159] "sphere"    "triangle"  "cigar"     "oval"      "triangle"  "triangle" 
[13165] "chevron"   NA          "circle"    NA          "triangle"  NA         
[13171] NA          "light"     "unknown"   "light"     "light"     "light"    
[13177] "fireball"  "light"     "circle"    "light"     "fireball"  "circle"   
[13183] "disk"      "diamond"   "triangle"  "triangle"  "other"     "circle"   
[13189] "disk"      "disk"      "disk"      "formation" "circle"    "oval"     
[13195] "unknown"   "triangle"  "oval"      "triangle"  "disk"      "disk"     
[13201] "formation" "triangle"  "fireball"  "changing"  "other"     "light"    
[13207] "changing"  "disk"      "unknown"   "triangle"  "light"     "cigar"    
[13213] "circle"    "triangle"  "teardrop"  "formation" "triangle"  "light"    
[13219] "circle"    "other"     "unknown"   "other"     "triangle"  "disk"     
[13225] "circle"    "changing"  "light"     "formation" "other"     "oval"     
[13231] "light"     "triangle"  "triangle"  "sphere"    "flash"     "light"    
[13237] "teardrop"  "rectangle" "triangle"  "unknown"   "unknown"   "fireball" 
[13243] "triangle"  "triangle"  "oval"      "fireball"  "disk"      "egg"      
[13249] "triangle"  "light"     "fireball"  "flash"     "light"     "unknown"  
[13255] "light"     "light"     "teardrop"  "unknown"   "light"     "fireball" 
[13261] "unknown"   "formation" "unknown"   "triangle"  "light"     "light"    
[13267] "circle"    "disk"      "triangle"  "triangle"  "triangle"  "disk"     
[13273] "unknown"   "light"     "unknown"   "oval"      "light"     "other"    
[13279] "other"     "triangle"  "light"     "oval"      "changing"  "cigar"    
[13285] "fireball"  "sphere"    "light"     "triangle"  "unknown"   "light"    
[13291] "triangle"  "triangle"  "sphere"    "triangle"  "light"     "formation"
[13297] "formation" "other"     "cross"     "light"     "disk"      "triangle" 
[13303] "light"     "other"     "light"     "fireball"  "oval"      "triangle" 
[13309] "light"     "fireball"  "circle"    "other"     "disk"      "light"    
[13315] "light"     "flash"     "light"     "light"     "disk"      "other"    
[13321] "chevron"   "changing"  "triangle"  "sphere"    "changing"  "circle"   
[13327] "other"     "fireball"  "fireball"  "disk"      "cigar"     "fireball" 
[13333] "cross"     "other"     "other"     "light"     "triangle"  "triangle" 
[13339] "triangle"  "other"     "light"     "diamond"   "disk"      "other"    
[13345] "flash"     "triangle"  "formation" "changing"  "light"     "fireball" 
[13351] "light"     "triangle"  "fireball"  "unknown"   "fireball"  "unknown"  
[13357] "sphere"    "changing"  "changing"  "light"     "changing"  "egg"      
[13363] "unknown"   "sphere"    "light"     "triangle"  "oval"      "oval"     
[13369] "triangle"  "oval"      "triangle"  "unknown"   "other"     "triangle" 
[13375] "unknown"   "light"     "egg"       "light"     "fireball"  "other"    
[13381] "light"     "unknown"   "unknown"   "flash"     "light"     "light"    
[13387] "light"     "formation" "changing"  "light"     "flash"     "light"    
[13393] "other"     "light"     "circle"    "flash"     "circle"    "triangle" 
[13399] "flash"     "triangle"  "light"     "triangle"  "cross"     "rectangle"
[13405] "sphere"    "circle"    "disk"      "unknown"   "disk"      "oval"     
[13411] "egg"       "sphere"    "cylinder"  "other"     "changing"  "light"    
[13417] "light"     "other"     NA          "teardrop"  "triangle"  "cigar"    
[13423] "fireball"  "other"     "triangle"  "disk"      "triangle"  "oval"     
[13429] "light"     "unknown"   "unknown"   "light"     "other"     "disk"     
[13435] "fireball"  "triangle"  "circle"    "light"     "disk"      "rectangle"
[13441] "light"     "fireball"  "circle"    "formation" "formation" "sphere"   
[13447] "egg"       "flash"     "unknown"   "cylinder"  "light"     "other"    
[13453] "other"     "flash"     "circle"    "light"     "flash"     "other"    
[13459] "light"     "other"     "triangle"  "cylinder"  "light"     "cigar"    
[13465] "sphere"    "oval"      "other"     "circle"    "unknown"   "unknown"  
[13471] "fireball"  "disk"      "egg"       "light"     "formation" "light"    
[13477] "sphere"    "other"     "triangle"  "triangle"  "fireball"  "circle"   
[13483] "light"     "circle"    "unknown"   "flash"     "flash"     "fireball" 
[13489] "changing"  "flash"     "circle"    "light"     "light"     "unknown"  
[13495] "fireball"  "fireball"  "circle"    "flash"     "other"     "sphere"   
[13501] "circle"    "circle"    "circle"    "flash"     "triangle"  "light"    
[13507] "fireball"  "circle"    "light"     "oval"      "light"     "light"    
[13513] "oval"      "light"     "light"     "triangle"  "rectangle" "light"    
[13519] "light"     "sphere"    "circle"    "cylinder"  "triangle"  "disk"     
[13525] "light"     "other"     "circle"    "sphere"    "oval"      "oval"     
[13531] "light"     "light"     "light"     "circle"    "sphere"    "fireball" 
[13537] "light"     "sphere"    "light"     "fireball"  "light"     "oval"     
[13543] "light"     "diamond"   "teardrop"  "circle"    "cigar"     "sphere"   
[13549] "cigar"     "disk"      "disk"      "cylinder"  "unknown"   "cigar"    
[13555] "fireball"  "light"     "unknown"   "egg"       "light"     "light"    
[13561] "fireball"  "light"     "light"     "circle"    "light"     "triangle" 
[13567] "triangle"  "flash"     "oval"      "circle"    "teardrop"  "oval"     
[13573] "circle"    "light"     "disk"      "triangle"  "disk"      "disk"     
[13579] "triangle"  "cigar"     NA          NA          "other"     "egg"      
[13585] "other"     "triangle"  "disk"      "other"     "sphere"    "other"    
[13591] "unknown"   "circle"    "fireball"  "cigar"     "light"     "disk"     
[13597] "light"     "fireball"  "triangle"  "triangle"  "triangle"  "light"    
[13603] "fireball"  "oval"      "circle"    "flash"     "sphere"    "fireball" 
[13609] "disk"      "triangle"  "formation" "circle"    "sphere"    "disk"     
[13615] "light"     "circle"    "triangle"  "triangle"  "circle"    "other"    
[13621] "light"     "light"     "circle"    "light"     "cylinder"  "triangle" 
[13627] "triangle"  "circle"    "other"     "circle"    "cigar"     "other"    
[13633] "unknown"   "light"     "other"     "changing"  "triangle"  NA         
[13639] "cigar"     "triangle"  "triangle"  "fireball"  "unknown"   "light"    
[13645] "triangle"  "changing"  "other"     "unknown"   "unknown"   "other"    
[13651] "triangle"  "triangle"  "fireball"  "chevron"   "other"     "cigar"    
[13657] "other"     "unknown"   "cigar"     "rectangle" "sphere"    "changing" 
[13663] NA          "unknown"   "disk"      "light"     "triangle"  "circle"   
[13669] "triangle"  "triangle"  "disk"      "teardrop"  "unknown"   "rectangle"
[13675] "light"     "light"     "cylinder"  "other"     "light"     "disk"     
[13681] "triangle"  "other"     "cone"      "light"     NA          "cylinder" 
[13687] "chevron"   "light"     "oval"      "oval"      NA          "light"    
[13693] "triangle"  "changing"  "changing"  "chevron"   "unknown"   "unknown"  
[13699] "light"     "circle"    "triangle"  "light"     "light"     "circle"   
[13705] "unknown"   "circle"    "oval"      "light"     "unknown"   "light"    
[13711] "light"     "fireball"  "unknown"   "circle"    "unknown"   "oval"     
[13717] "unknown"   "light"     "fireball"  "fireball"  "flash"     "fireball" 
[13723] "disk"      "triangle"  "cigar"     "circle"    "disk"      "light"    
[13729] "light"     "changing"  "sphere"    "egg"       "other"     "cigar"    
[13735] "light"     "sphere"    "changing"  "triangle"  "light"     "triangle" 
[13741] "diamond"   "triangle"  "chevron"   "other"     "disk"      "light"    
[13747] "fireball"  NA          "circle"    "light"     "triangle"  "fireball" 
[13753] "diamond"   "circle"    "changing"  "formation" "fireball"  "light"    
[13759] "diamond"   "fireball"  "light"     "circle"    "fireball"  "light"    
[13765] "formation" "other"     "triangle"  "triangle"  "fireball"  "light"    
[13771] "triangle"  "circle"    "light"     "fireball"  "circle"    "fireball" 
[13777] "circle"    "formation" "light"     "fireball"  "sphere"    "circle"   
[13783] "disk"      "light"     "fireball"  "light"     "changing"  "circle"   
[13789] "circle"    "sphere"    "light"     "unknown"   "light"     "oval"     
[13795] "light"     "oval"      "light"     "cylinder"  "oval"      "formation"
[13801] "changing"  "circle"    "changing"  "unknown"   "fireball"  "diamond"  
[13807] "light"     "triangle"  "unknown"   "light"     "disk"      "chevron"  
[13813] "other"     "cigar"     "sphere"    "changing"  "circle"    "triangle" 
[13819] "chevron"   "triangle"  "triangle"  "triangle"  "cigar"     "triangle" 
[13825] "sphere"    "formation" "triangle"  NA          NA          NA         
[13831] "fireball"  "light"     "chevron"   "oval"      "triangle"  "circle"   
[13837] "light"     "changing"  "unknown"   "light"     "chevron"   "changing" 
[13843] "disk"      "light"     "oval"      "cigar"     "cigar"     "disk"     
[13849] "other"     "sphere"    "sphere"    "light"     "triangle"  "oval"     
[13855] "other"     "light"     "cigar"     "light"     "other"     "triangle" 
[13861] "light"     "circle"    "formation" "circle"    "unknown"   "light"    
[13867] "oval"      "triangle"  "light"     "disk"      "oval"      "sphere"   
[13873] "disk"      "circle"    "other"     "unknown"   "unknown"   "light"    
[13879] "other"     "unknown"   "flash"     "unknown"   "fireball"  "formation"
[13885] "light"     "oval"      "light"     "triangle"  "circle"    "chevron"  
[13891] NA          "unknown"   NA          "oval"      "light"     "circle"   
[13897] "light"     "teardrop"  "circle"    "fireball"  "disk"      "unknown"  
[13903] "triangle"  "unknown"   "light"     "light"     "formation" "light"    
[13909] "rectangle" "light"     "sphere"    "light"     "cigar"     "disk"     
[13915] "circle"    "oval"      "changing"  "triangle"  "light"     "triangle" 
[13921] "sphere"    "triangle"  "unknown"   "sphere"    "light"     "circle"   
[13927] "circle"    "light"     "unknown"   "changing"  "other"     "formation"
[13933] "formation" "triangle"  "other"     "light"     "light"     "changing" 
[13939] "cigar"     "light"     "disk"      "triangle"  "sphere"    "circle"   
[13945] "triangle"  "light"     "light"     "light"     "diamond"   "fireball" 
[13951] "light"     "changing"  "oval"      "light"     "light"     "other"    
[13957] "oval"      "light"     "light"     "light"     "changing"  "other"    
[13963] "oval"      "changing"  "other"     "other"     "triangle"  "cylinder" 
[13969] NA          "fireball"  "light"     "circle"    "other"     "sphere"   
[13975] "diamond"   "changing"  "triangle"  "fireball"  "fireball"  "triangle" 
[13981] "diamond"   "circle"    "disk"      "formation" "formation" "unknown"  
[13987] "cylinder"  "fireball"  "sphere"    "light"     "fireball"  "fireball" 
[13993] "sphere"    "circle"    "other"     "light"     "oval"      "light"    
[13999] "triangle"  "unknown"   "unknown"   "diamond"   "oval"      "triangle" 
[14005] NA          "other"     "chevron"   "light"     "light"     "circle"   
[14011] "fireball"  "light"     "light"     "light"     "light"     "light"    
[14017] "sphere"    "triangle"  "fireball"  "formation" "chevron"   "changing" 
[14023] "sphere"    NA          "circle"    "oval"      "other"     "cigar"    
[14029] "triangle"  "sphere"    "triangle"  "fireball"  "other"     "formation"
[14035] "disk"      NA          NA          "light"     NA          "light"    
[14041] "oval"      "oval"      "triangle"  "light"     "light"     "unknown"  
[14047] "circle"    "formation" "formation" "triangle"  "light"     "light"    
[14053] "fireball"  "light"     "circle"    "changing"  "chevron"   "circle"   
[14059] "cigar"     "circle"    "triangle"  "fireball"  "flash"     "triangle" 
[14065] "light"     "circle"    "light"     "disk"      "circle"    "fireball" 
[14071] "formation" "chevron"   "circle"    "cylinder"  "fireball"  "circle"   
[14077] "triangle"  "sphere"    "changing"  "light"     "oval"      "disk"     
[14083] "circle"    "circle"    "triangle"  "changing"  "chevron"   "unknown"  
[14089] "disk"      "unknown"   "fireball"  "light"     "light"     "light"    
[14095] "triangle"  "light"     "light"     "light"     "triangle"  "diamond"  
[14101] "light"     "formation" "sphere"    "triangle"  "light"     "light"    
[14107] "flash"     "disk"      "other"     NA          "light"     "fireball" 
[14113] "light"     "fireball"  "chevron"   "triangle"  "fireball"  "light"    
[14119] "flash"     "circle"    "fireball"  "triangle"  "rectangle" "oval"     
[14125] "circle"    "light"     "circle"    "cigar"     "light"     "triangle" 
[14131] "light"     "chevron"   "cross"     "light"     "light"     "rectangle"
[14137] NA          "triangle"  "disk"      "circle"    "chevron"   "other"    
[14143] "triangle"  "light"     "light"     "light"     "oval"      NA         
[14149] "triangle"  "other"     "formation" "fireball"  "flash"     "light"    
[14155] "triangle"  "light"     "unknown"   "light"     "circle"    "unknown"  
[14161] "diamond"   "triangle"  "light"     "fireball"  "sphere"    "light"    
[14167] "fireball"  "triangle"  "circle"    "fireball"  "light"     "circle"   
[14173] "light"     "fireball"  "triangle"  "sphere"    "oval"      "unknown"  
[14179] "light"     "triangle"  "circle"    "oval"      "light"     "formation"
[14185] "circle"    "fireball"  "light"     "circle"    "circle"    "unknown"  
[14191] "light"     "light"     "fireball"  "oval"      "oval"      "triangle" 
[14197] "light"     "light"     "unknown"   "sphere"    "circle"    "disk"     
[14203] "cross"     "light"     "circle"    "other"     "sphere"    "triangle" 
[14209] "sphere"    "disk"      "triangle"  "circle"    "changing"  "light"    
[14215] "fireball"  "other"     "triangle"  "light"     "disk"      "light"    
[14221] "triangle"  "light"     "light"     "triangle"  "changing"  "circle"   
[14227] "disk"      "disk"      "cigar"     "circle"    "sphere"    "triangle" 
[14233] "fireball"  "rectangle" "light"     "sphere"    "rectangle" "unknown"  
[14239] "cigar"     "triangle"  "unknown"   "light"     "other"     NA         
[14245] NA          "fireball"  NA          NA          NA          "triangle" 
[14251] NA          NA          "other"     "crescent"  "sphere"    "triangle" 
[14257] "fireball"  "other"     "flash"     "light"     "circle"    "light"    
[14263] "light"     "diamond"   "sphere"    "unknown"   "circle"    "sphere"   
[14269] "light"     "triangle"  "circle"    "changing"  "disk"      NA         
[14275] "circle"    "light"     "other"     "light"     "rectangle" "oval"     
[14281] "egg"       NA          "light"     "other"     "unknown"   "circle"   
[14287] "unknown"   "other"     "disk"      "light"     "other"     "changing" 
[14293] "formation" "light"     "triangle"  "light"     "triangle"  "circle"   
[14299] "other"     "circle"    "disk"      "light"     "light"     "light"    
[14305] "disk"      "teardrop"  "other"     "cone"      "rectangle" "light"    
[14311] "light"     "triangle"  "oval"      "circle"    "light"     "cigar"    
[14317] "diamond"   "triangle"  "light"     "circle"    "disk"      "formation"
[14323] "triangle"  "flash"     "circle"    "circle"    "fireball"  "light"    
[14329] "unknown"   "oval"      "triangle"  "circle"    "light"     "light"    
[14335] "oval"      "unknown"   "light"     "light"     "cigar"     "rectangle"
[14341] "cigar"     "light"     "light"     "light"     "teardrop"  "disk"     
[14347] "light"     "triangle"  "light"     "other"     "sphere"    "formation"
[14353] "other"     "other"     "light"     "light"     "unknown"   "light"    
[14359] "light"     "light"     "flash"     "circle"    "chevron"   "fireball" 
[14365] "triangle"  "chevron"   "disk"      "triangle"  "other"     "light"    
[14371] "oval"      "unknown"   "light"     "disk"      "rectangle" "formation"
[14377] "sphere"    "circle"    "changing"  "triangle"  "light"     "fireball" 
[14383] "light"     "fireball"  "fireball"  "circle"    "unknown"   "unknown"  
[14389] "light"     "changing"  "formation" "light"     "circle"    "other"    
[14395] "light"     "light"     "formation" "light"     "disk"      "light"    
[14401] "light"     "light"     "circle"    "other"     "triangle"  "sphere"   
[14407] "formation" "cross"     "formation" "triangle"  "triangle"  "fireball" 
[14413] "light"     "fireball"  "triangle"  "diamond"   "fireball"  "cigar"    
[14419] "formation" "light"     "cigar"     "flash"     "disk"      "circle"   
[14425] "triangle"  "changing"  "disk"      "unknown"   "triangle"  "cigar"    
[14431] "disk"      "teardrop"  "triangle"  "other"     "circle"    "cylinder" 
[14437] "unknown"   "light"     "oval"      "rectangle" "other"     "formation"
[14443] "formation" "light"     "light"     "light"     "circle"    "unknown"  
[14449] "other"     "flash"     "light"     "light"     "light"     "formation"
[14455] "light"     "triangle"  "fireball"  "other"     "circle"    "chevron"  
[14461] "light"     "disk"      "triangle"  "light"     "light"     "fireball" 
[14467] "chevron"   "light"     "teardrop"  "other"     "light"     "light"    
[14473] NA          "light"     "sphere"    "triangle"  "triangle"  "light"    
[14479] "light"     "light"     NA          "oval"      "circle"    "disk"     
[14485] "light"     "changing"  "unknown"   "light"     "circle"    "oval"     
[14491] "oval"      "chevron"   "light"     "sphere"    "light"     "oval"     
[14497] "unknown"   "cylinder"  "circle"    "cigar"     "unknown"   "light"    
[14503] "changing"  "unknown"   "other"     "light"     "light"     "unknown"  
[14509] "fireball"  "light"     "flash"     "other"     "unknown"   "fireball" 
[14515] "disk"      "other"     "light"     "rectangle" "other"     "light"    
[14521] "sphere"    "fireball"  "other"     "light"     "circle"    "light"    
[14527] "light"     "disk"      "changing"  "sphere"    "light"     "triangle" 
[14533] "triangle"  "light"     "light"     "light"     "unknown"   NA         
[14539] "fireball"  "teardrop"  "light"     "triangle"  "triangle"  "cigar"    
[14545] "oval"      "unknown"   "diamond"   "light"     "formation" "circle"   
[14551] "unknown"   "circle"    "fireball"  "unknown"   "triangle"  "fireball" 
[14557] "light"     "sphere"    "disk"      "light"     "circle"    "disk"     
[14563] "cigar"     "formation" "changing"  "circle"    "light"     "light"    
[14569] "other"     "flash"     "light"     "unknown"   "circle"    "light"    
[14575] "disk"      "rectangle" "light"     "light"     "light"     "disk"     
[14581] "cigar"     "light"     "fireball"  "circle"    "disk"      "disk"     
[14587] "triangle"  "circle"    "light"     "unknown"   "rectangle" "disk"     
[14593] "disk"      "other"     "light"     "sphere"    "sphere"    "disk"     
[14599] "fireball"  "oval"      "unknown"   "light"     "circle"    "disk"     
[14605] "unknown"   "triangle"  "other"     NA          NA          "chevron"  
[14611] NA          NA          "other"     "fireball"  "fireball"  "triangle" 
[14617] "sphere"    "fireball"  "light"     "triangle"  "fireball"  "unknown"  
[14623] "cross"     "sphere"    "circle"    "changing"  "light"     "disk"     
[14629] "light"     "fireball"  "changing"  "circle"    "circle"    "triangle" 
[14635] "fireball"  "diamond"   "disk"      "egg"       "fireball"  "oval"     
[14641] "triangle"  "disk"      "triangle"  "egg"       "other"     "triangle" 
[14647] "changing"  "circle"    "flash"     "unknown"   "triangle"  "unknown"  
[14653] "fireball"  "chevron"   "disk"      "disk"      "triangle"  "light"    
[14659] "fireball"  "unknown"   "triangle"  "oval"      "light"     "disk"     
[14665] "disk"      "changing"  "fireball"  "unknown"   "unknown"   "circle"   
[14671] "oval"      "oval"      "triangle"  "formation" "light"     "egg"      
[14677] "light"     "light"     "light"     "cross"     "light"     "unknown"  
[14683] "light"     "light"     "light"     "light"     "sphere"    "disk"     
[14689] "triangle"  "disk"      "other"     "oval"      "triangle"  "fireball" 
[14695] "light"     "flash"     "changing"  "light"     "triangle"  "unknown"  
[14701] "fireball"  "light"     "light"     "light"     "light"     NA         
[14707] "fireball"  "light"     "disk"      "sphere"    "circle"    "formation"
[14713] "light"     "light"     "flash"     "diamond"   "cigar"     "light"    
[14719] "light"     "light"     "light"     "light"     "circle"    "light"    
[14725] "fireball"  "light"     "changing"  "fireball"  "light"     "diamond"  
[14731] "triangle"  "chevron"   "other"     "flash"     "light"     "formation"
[14737] "circle"    "chevron"   "circle"    "teardrop"  "light"     "light"    
[14743] "circle"    "triangle"  "oval"      "light"     "disk"      "other"    
[14749] "triangle"  "fireball"  "oval"      "other"     "triangle"  "formation"
[14755] "disk"      "rectangle" "light"     "sphere"    "triangle"  "circle"   
[14761] "unknown"   "triangle"  "circle"    "triangle"  "circle"    "unknown"  
[14767] "light"     "flash"     "circle"    "diamond"   "circle"    "changing" 
[14773] "triangle"  "other"     "triangle"  "triangle"  "other"     "unknown"  
[14779] "formation" "disk"      "disk"      "oval"      "egg"       "other"    
[14785] NA          NA          NA          "light"     "fireball"  "fireball" 
[14791] "triangle"  "triangle"  "other"     "fireball"  "circle"    "other"    
[14797] "cigar"     "sphere"    "sphere"    "fireball"  "fireball"  "sphere"   
[14803] "unknown"   "sphere"    "fireball"  "circle"    "chevron"   "disk"     
[14809] "light"     "triangle"  "fireball"  "circle"    "fireball"  "fireball" 
[14815] "fireball"  "triangle"  "other"     "sphere"    "sphere"    "disk"     
[14821] "light"     "circle"    "other"     "light"     "triangle"  "changing" 
[14827] "light"     "disk"      "formation" "other"     "cylinder"  NA         
[14833] "fireball"  NA          "fireball"  "other"     "light"     "other"    
[14839] "circle"    "fireball"  "changing"  "fireball"  "flash"     "light"    
[14845] "cylinder"  "light"     "light"     "light"     "light"     "light"    
[14851] "other"     "triangle"  "other"     "disk"      "oval"      "light"    
[14857] "light"     "other"     "disk"      "flash"     "light"     "light"    
[14863] "light"     "fireball"  "triangle"  "circle"    "fireball"  "other"    
[14869] "light"     "sphere"    "circle"    "unknown"   "disk"      "formation"
[14875] "cigar"     "triangle"  "disk"      "other"     "unknown"   NA         
[14881] "light"     "sphere"    "egg"       "oval"      "changing"  "sphere"   
[14887] "light"     "circle"    "fireball"  "circle"    "fireball"  "light"    
[14893] "sphere"    "fireball"  "light"     "changing"  "unknown"   "circle"   
[14899] "light"     "fireball"  "changing"  "fireball"  "light"     "other"    
[14905] "cigar"     "light"     "fireball"  "fireball"  "light"     "light"    
[14911] "fireball"  "light"     "fireball"  "oval"      "formation" "light"    
[14917] "cigar"     "light"     NA          "other"     "circle"    "unknown"  
[14923] "oval"      "light"     "circle"    "diamond"   "diamond"   "formation"
[14929] "light"     "unknown"   "triangle"  "oval"      "sphere"    "other"    
[14935] "cylinder"  "light"     "sphere"    "light"     "light"     "light"    
[14941] "formation" "disk"      "rectangle" "flash"     "diamond"   "oval"     
[14947] "rectangle" "flash"     "oval"      "fireball"  "triangle"  "sphere"   
[14953] "changing"  "circle"    "flash"     "triangle"  "triangle"  "triangle" 
[14959] "rectangle" "oval"      "light"     "circle"    "triangle"  "triangle" 
[14965] "triangle"  "rectangle" "triangle"  "other"     "oval"      "unknown"  
[14971] "oval"      "light"     "oval"      "unknown"   "light"     "diamond"  
[14977] "changing"  "egg"       "disk"      "triangle"  "unknown"   "oval"     
[14983] "triangle"  "triangle"  "light"     "unknown"   "unknown"   "oval"     
[14989] "circle"    "fireball"  "other"     "light"     "circle"    "light"    
[14995] "diamond"   "light"     "light"     "fireball"  "light"     "light"    
[15001] "triangle"  "circle"    "circle"    "fireball"  "formation" NA         
[15007] "sphere"    "sphere"    "circle"    "circle"    "teardrop"  "circle"   
[15013] "oval"      "circle"    "light"     "sphere"    "circle"    "disk"     
[15019] "circle"    "formation" "circle"    "light"     "flash"     "light"    
[15025] "egg"       "light"     "other"     "circle"    "triangle"  "diamond"  
[15031] "fireball"  "triangle"  "unknown"   "formation" "light"     "formation"
[15037] "light"     "formation" "circle"    "changing"  "fireball"  "light"    
[15043] "fireball"  "light"     "oval"      "fireball"  "light"     "circle"   
[15049] "sphere"    "formation" "circle"    "cone"      "formation" "sphere"   
[15055] "light"     "teardrop"  "fireball"  "unknown"   "other"     "disk"     
[15061] "other"     "disk"      "triangle"  "unknown"   "unknown"   "light"    
[15067] "light"     NA          NA          NA          "light"     "light"    
[15073] "light"     "fireball"  "other"     "fireball"  "triangle"  "fireball" 
[15079] "light"     "sphere"    "fireball"  "disk"      "circle"    "triangle" 
[15085] "unknown"   "disk"      "light"     "other"     "other"     "triangle" 
[15091] "unknown"   "oval"      "disk"      "changing"  "fireball"  "cylinder" 
[15097] "circle"    "other"     "oval"      "disk"      "light"     "flash"    
[15103] "light"     "unknown"   "light"     "unknown"   "triangle"  "circle"   
[15109] "light"     "fireball"  "disk"      "other"     "light"     "sphere"   
[15115] "sphere"    "sphere"    "chevron"   "cone"      "light"     "unknown"  
[15121] "diamond"   "disk"      "light"     "light"     "unknown"   "triangle" 
[15127] "cylinder"  "light"     "light"     "light"     "unknown"   "other"    
[15133] "unknown"   "diamond"   "triangle"  "other"     "disk"      NA         
[15139] "fireball"  "fireball"  "other"     "fireball"  "triangle"  "formation"
[15145] "light"     "disk"      "circle"    "unknown"   "light"     "other"    
[15151] "disk"      "light"     "light"     "chevron"   "light"     "light"    
[15157] "chevron"   "sphere"    "diamond"   "oval"      "formation" "light"    
[15163] "disk"      "diamond"   "chevron"   "light"     "disk"      "changing" 
[15169] "chevron"   "circle"    "light"     "light"     "light"     "unknown"  
[15175] "flash"     "sphere"    "cigar"     "changing"  "triangle"  "circle"   
[15181] "light"     "chevron"   "changing"  "unknown"   "flash"     NA         
[15187] "circle"    "formation" "unknown"   "circle"    "disk"      "light"    
[15193] "fireball"  "unknown"   "other"     "sphere"    "sphere"    "changing" 
[15199] "chevron"   "fireball"  "light"     "light"     "light"     "sphere"   
[15205] "unknown"   "egg"       "light"     "other"     "other"     "fireball" 
[15211] "egg"       "triangle"  "changing"  "light"     "circle"    "fireball" 
[15217] "formation" "circle"    "disk"      "light"     "chevron"   "formation"
[15223] "triangle"  "sphere"    "sphere"    "sphere"    "fireball"  "light"    
[15229] "circle"    "chevron"   "chevron"   "cylinder"  "oval"      "triangle" 
[15235] "chevron"   "light"     "disk"      "unknown"   "triangle"  "unknown"  
[15241] "other"     "disk"      NA          "light"     "disk"      NA         
[15247] NA          "unknown"   NA          "light"     "light"     "flare"    
[15253] "cone"      "triangle"  "circle"    "light"     "light"     "triangle" 
[15259] "disk"      "fireball"  "sphere"    "triangle"  "circle"    "unknown"  
[15265] "light"     "circle"    "oval"      "unknown"   "fireball"  "circle"   
[15271] "circle"    "chevron"   "oval"      "fireball"  "light"     "triangle" 
[15277] "light"     "light"     "unknown"   "circle"    "changing"  "cylinder" 
[15283] "circle"    "triangle"  "unknown"   "triangle"  "light"     "chevron"  
[15289] "sphere"    "other"     "oval"      "oval"      "egg"       "disk"     
[15295] "disk"      "circle"    "other"     "light"     "light"     "light"    
[15301] "light"     "triangle"  "triangle"  "unknown"   "changing"  "unknown"  
[15307] "light"     "light"     "light"     "fireball"  "diamond"   "triangle" 
[15313] "unknown"   "light"     "other"     "disk"      "fireball"  "other"    
[15319] "sphere"    "circle"    "light"     "light"     "fireball"  NA         
[15325] "flash"     "unknown"   "triangle"  "circle"    "circle"    "circle"   
[15331] "fireball"  "light"     "other"     "light"     "chevron"   "light"    
[15337] "light"     "triangle"  "other"     "triangle"  "changing"  "light"    
[15343] "other"     "light"     "unknown"   "other"     "unknown"   "light"    
[15349] NA          "light"     "formation" "oval"      "light"     "oval"     
[15355] "sphere"    "light"     "light"     "other"     "sphere"    "triangle" 
[15361] "unknown"   "fireball"  "triangle"  "triangle"  "rectangle" "light"    
[15367] "teardrop"  "light"     "cigar"     "unknown"   "unknown"   "unknown"  
[15373] "other"     "triangle"  "disk"      "other"     "triangle"  "light"    
[15379] "fireball"  "triangle"  "unknown"   "diamond"   "circle"    "fireball" 
[15385] "triangle"  "light"     "changing"  "other"     "light"     NA         
[15391] "chevron"   "fireball"  "sphere"    "disk"      "oval"      "changing" 
[15397] "sphere"    "rectangle" "other"     "fireball"  "fireball"  "fireball" 
[15403] "oval"      "light"     "unknown"   "light"     "unknown"   "unknown"  
[15409] "fireball"  "formation" "formation" "flash"     "other"     "sphere"   
[15415] NA          "other"     "circle"    "triangle"  "cylinder"  "fireball" 
[15421] "oval"      "circle"    "fireball"  "light"     "light"     "fireball" 
[15427] "sphere"    "triangle"  "light"     "disk"      "light"     "cross"    
[15433] "egg"       "sphere"    "changing"  "sphere"    "light"     NA         
[15439] NA          "circle"    NA          NA          NA          NA         
[15445] NA          NA          "triangle"  NA          "fireball"  "fireball" 
[15451] "fireball"  "unknown"   "sphere"    "light"     "fireball"  "unknown"  
[15457] "light"     "circle"    "light"     "circle"    "circle"    "unknown"  
[15463] "oval"      "triangle"  "other"     "light"     "cylinder"  "fireball" 
[15469] "light"     "sphere"    "unknown"   "disk"      "light"     "triangle" 
[15475] "unknown"   "circle"    "circle"    "triangle"  "triangle"  "unknown"  
[15481] "fireball"  "oval"      "fireball"  "sphere"    "circle"    "egg"      
[15487] "oval"      "diamond"   "diamond"   "teardrop"  "sphere"    "other"    
[15493] "chevron"   "other"     "light"     "fireball"  "fireball"  "light"    
[15499] "disk"      "other"     "changing"  "other"     "other"     "light"    
[15505] "other"     "unknown"   "cylinder"  NA          "sphere"    "sphere"   
[15511] "light"     "other"     "diamond"   "circle"    "other"     "light"    
[15517] "triangle"  "triangle"  "oval"      "other"     "other"     "oval"     
[15523] "triangle"  "unknown"   "light"     "unknown"   "unknown"   "unknown"  
[15529] "disk"      "other"     "egg"       "light"     "triangle"  "oval"     
[15535] "rectangle" "light"     "unknown"   "oval"      "unknown"   "light"    
[15541] "unknown"   "light"     "light"     "diamond"   "chevron"   "unknown"  
[15547] "light"     NA          "formation" "oval"      "light"     "oval"     
[15553] "oval"      "unknown"   "formation" "formation" "formation" "other"    
[15559] "fireball"  "formation" "light"     NA          "circle"    "fireball" 
[15565] "other"     "sphere"    "disk"      "fireball"  "light"     "other"    
[15571] "unknown"   "light"     "flash"     "triangle"  "fireball"  "other"    
[15577] "oval"      "other"     "other"     "light"     "other"     "fireball" 
[15583] "other"     "light"     "circle"    "oval"      "oval"      "light"    
[15589] "triangle"  "light"     "flash"     "unknown"   "unknown"   "teardrop" 
[15595] "unknown"   "unknown"   "triangle"  "fireball"  "fireball"  "cigar"    
[15601] "other"     "fireball"  "circle"    "oval"      "triangle"  "circle"   
[15607] "unknown"   "oval"      "triangle"  "cigar"     "unknown"   "sphere"   
[15613] "light"     "other"     "other"     "light"     "cylinder"  "unknown"  
[15619] "circle"    "rectangle" "cylinder"  "unknown"   "unknown"   "formation"
[15625] "unknown"   "triangle"  "circle"    "other"     "triangle"  "triangle" 
[15631] "oval"      "triangle"  "light"     "unknown"   "rectangle" "triangle" 
[15637] "light"     "circle"    "triangle"  NA          "light"     "light"    
[15643] "light"     "rectangle" "flash"     "disk"      "light"     "light"    
[15649] "triangle"  "rectangle" "light"     "unknown"   "sphere"    "other"    
[15655] "egg"       "disk"      "light"     "light"     "sphere"    "other"    
[15661] "unknown"   "unknown"   NA          "sphere"    "sphere"    "oval"     
[15667] "changing"  "oval"      "egg"       "fireball"  "unknown"   "triangle" 
[15673] "other"     "disk"      "light"     "circle"    "light"     "triangle" 
[15679] "diamond"   "circle"    "oval"      "light"     "triangle"  "egg"      
[15685] "other"     "changing"  "triangle"  "light"     "sphere"    "other"    
[15691] "rectangle" "rectangle" NA          "unknown"   "disk"      "cylinder" 
[15697] "light"     "fireball"  "light"     "light"     "light"     "triangle" 
[15703] "flash"     "light"     "unknown"   "other"     "light"     "circle"   
[15709] "formation" "circle"    "light"     "light"     "other"     "cylinder" 
[15715] "circle"    "flash"     "light"     "unknown"   NA          "sphere"   
[15721] "circle"    "light"     "light"     "oval"      "light"     "other"    
[15727] "diamond"   "light"     "flash"     "triangle"  "light"     "disk"     
[15733] "circle"    "unknown"   "disk"      "sphere"    "oval"      "sphere"   
[15739] NA          "unknown"   "fireball"  "circle"    "light"     "changing" 
[15745] "light"     "cigar"     "changing"  "sphere"    "disk"      "unknown"  
[15751] "egg"       "fireball"  "oval"      "other"     "cone"      "unknown"  
[15757] "fireball"  "changing"  "rectangle" "diamond"   "sphere"    "other"    
[15763] "flash"     "rectangle" "disk"      "oval"      "sphere"    "light"    
[15769] "circle"    "other"     "light"     "unknown"   "sphere"    "sphere"   
[15775] "light"     "triangle"  "unknown"   "fireball"  "triangle"  "unknown"  
[15781] "triangle"  "circle"    "formation" "formation" "sphere"    "other"    
[15787] "fireball"  "light"     "chevron"   "formation" "circle"    "fireball" 
[15793] "changing"  "light"     "circle"    "circle"    "unknown"   "sphere"   
[15799] "light"     "light"     "cylinder"  "light"     "circle"    "changing" 
[15805] "circle"    "circle"    "formation" "triangle"  "light"     "other"    
[15811] "light"     "fireball"  "fireball"  "light"     "fireball"  "light"    
[15817] "rectangle" "light"     "triangle"  "light"     "circle"    "triangle" 
[15823] "changing"  "triangle"  "cross"     "triangle"  "chevron"   "fireball" 
[15829] "light"     "sphere"    "light"     "circle"    "light"     "rectangle"
[15835] "light"     "changing"  "light"     "light"     "light"     "flash"    
[15841] "fireball"  "sphere"    "circle"    "fireball"  "circle"    "chevron"  
[15847] "triangle"  "teardrop"  "light"     "triangle"  "triangle"  "cigar"    
[15853] "light"     "changing"  "disk"      "rectangle" "rectangle" "disk"     
[15859] "disk"      "unknown"   "circle"    "disk"      "circle"    "disk"     
[15865] "light"     NA          "unknown"   "disk"      "sphere"    NA         
[15871] NA          NA          NA          NA          NA          NA         
[15877] "disk"      "light"     "fireball"  "oval"      "fireball"  "triangle" 
[15883] "fireball"  "other"     "cone"      "triangle"  "fireball"  "formation"
[15889] "oval"      "fireball"  "disk"      NA          "unknown"   "unknown"  
[15895] "disk"      "cigar"     "disk"      "light"     "rectangle" "circle"   
[15901] "circle"    "light"     "light"     "triangle"  "light"     "diamond"  
[15907] "light"     "disk"      "light"     "formation" "light"     "cigar"    
[15913] "light"     NA          "disk"      "unknown"   "triangle"  "sphere"   
[15919] "triangle"  "disk"      "formation" "unknown"   "light"     "triangle" 
[15925] "light"     NA          "light"     "circle"    "cigar"     "light"    
[15931] "cylinder"  "cylinder"  "circle"    "unknown"   "circle"    "light"    
[15937] "cylinder"  "changing"  "light"     "sphere"    "other"     "light"    
[15943] "light"     "unknown"   "light"     "disk"      "light"     "unknown"  
[15949] "oval"      "oval"      "light"     "unknown"   "unknown"   "unknown"  
[15955] "cigar"     "triangle"  "fireball"  "other"     "fireball"  "other"    
[15961] "circle"    "triangle"  "oval"      "fireball"  "sphere"    "triangle" 
[15967] "flash"     NA          "cigar"     "unknown"   "light"     "unknown"  
[15973] "unknown"   "unknown"   "fireball"  "triangle"  "triangle"  "sphere"   
[15979] "formation" "light"     "sphere"    "light"     NA          "unknown"  
[15985] "flash"     "circle"    "oval"      "sphere"    "triangle"  "fireball" 
[15991] "light"     "fireball"  "light"     "triangle"  "diamond"   "formation"
[15997] "teardrop"  "oval"      "cylinder"  "light"     "cigar"     "cigar"    
[16003] "sphere"    "unknown"   "light"     "triangle"  "triangle"  "disk"     
[16009] "circle"    "light"     "light"     "circle"    "light"     "circle"   
[16015] "circle"    "circle"    "light"     "other"     "triangle"  "triangle" 
[16021] "light"     "other"     "flash"     "flash"     "light"     "oval"     
[16027] "circle"    "cylinder"  "triangle"  NA          "light"     "rectangle"
[16033] "circle"    "formation" "circle"    "unknown"   "teardrop"  "circle"   
[16039] "oval"      "triangle"  "fireball"  "light"     "fireball"  "unknown"  
[16045] "disk"      "cylinder"  "sphere"    "other"     "sphere"    "triangle" 
[16051] "cone"      "circle"    "disk"      "triangle"  "other"     "light"    
[16057] "fireball"  "light"     "fireball"  "cigar"     "oval"      "disk"     
[16063] "circle"    NA          NA          "unknown"   "triangle"  "cylinder" 
[16069] "cigar"     "disk"      "sphere"    "light"     "unknown"   "other"    
[16075] "triangle"  "other"     "light"     "light"     "circle"    "oval"     
[16081] "triangle"  "light"     "fireball"  "circle"    "light"     "other"    
[16087] "sphere"    "unknown"   "light"     "light"     "disk"      "oval"     
[16093] "circle"    "flash"     "light"     "light"     "diamond"   "other"    
[16099] "fireball"  "sphere"    "sphere"    "sphere"    "disk"      "triangle" 
[16105] "triangle"  "diamond"   "oval"      "fireball"  "diamond"   "cigar"    
[16111] "formation" "teardrop"  "unknown"   "sphere"    "other"     "rectangle"
[16117] "unknown"   "unknown"   "egg"       "sphere"    "disk"      "triangle" 
[16123] "other"     "formation" "formation" NA          "oval"      "light"    
[16129] "triangle"  "sphere"    "flash"     "cross"     "sphere"    "chevron"  
[16135] "fireball"  "light"     "triangle"  "circle"    "flash"     "triangle" 
[16141] "unknown"   "sphere"    "rectangle" "rectangle" "light"     "cigar"    
[16147] "circle"    "light"     "light"     "light"     "circle"    "fireball" 
[16153] "light"     "formation" "disk"      "light"     "oval"      "sphere"   
[16159] "light"     "triangle"  "light"     "light"     "light"     "circle"   
[16165] "light"     "other"     "sphere"    "fireball"  "cigar"     "light"    
[16171] "circle"    "fireball"  "light"     "light"     "triangle"  "light"    
[16177] "circle"    "rectangle" "light"     "sphere"    "circle"    "oval"     
[16183] "light"     "other"     "changing"  "fireball"  "other"     "unknown"  
[16189] "other"     "triangle"  "light"     "circle"    "changing"  "unknown"  
[16195] "light"     "light"     "light"     "circle"    "unknown"   "triangle" 
[16201] "light"     "changing"  "cigar"     "oval"      "triangle"  "circle"   
[16207] "other"     "light"     "triangle"  "cigar"     "triangle"  "light"    
[16213] "fireball"  "triangle"  "unknown"   "circle"    "triangle"  "flash"    
[16219] "triangle"  "light"     "light"     "other"     "unknown"   "other"    
[16225] "light"     "light"     "fireball"  "triangle"  "light"     "fireball" 
[16231] NA          "disk"      "light"     "disk"      "light"     "circle"   
[16237] "unknown"   "disk"      "circle"    "oval"      "oval"      "other"    
[16243] "disk"      "rectangle" "sphere"    "light"     "cylinder"  "triangle" 
[16249] "unknown"   "disk"      "disk"      "fireball"  "triangle"  "sphere"   
[16255] "light"     "unknown"   "rectangle" "changing"  "light"     "chevron"  
[16261] "fireball"  "triangle"  "triangle"  "disk"      "disk"      "light"    
[16267] "oval"      "cigar"     "triangle"  "disk"      "triangle"  "formation"
[16273] "light"     "circle"    "changing"  "unknown"   "cylinder"  "circle"   
[16279] "unknown"   "disk"      "other"     "other"     "triangle"  "egg"      
[16285] "changing"  NA          "disk"      "triangle"  "disk"      "triangle" 
[16291] "light"     "disk"      "sphere"    "unknown"   "sphere"    "circle"   
[16297] "formation" "triangle"  "light"     "sphere"    "oval"      "triangle" 
[16303] "unknown"   NA          "light"     NA          "triangle"  "triangle" 
[16309] NA          "sphere"    NA          "rectangle" NA          "triangle" 
[16315] NA          NA          "circle"    "oval"      NA          "formation"
[16321] "teardrop"  "light"     "sphere"    "oval"      "disk"      "disk"     
[16327] "oval"      "egg"       "triangle"  "disk"      "fireball"  "light"    
[16333] "formation" "triangle"  "light"     "light"     "disk"      "sphere"   
[16339] "fireball"  "triangle"  "fireball"  "triangle"  NA          "flash"    
[16345] NA          "disk"      "light"     "sphere"    "unknown"   "diamond"  
[16351] "changing"  "other"     "triangle"  "formation" "light"     "rectangle"
[16357] "disk"      "disk"      "chevron"   "unknown"   "other"     "light"    
[16363] "triangle"  "fireball"  "diamond"   "fireball"  "diamond"   "fireball" 
[16369] "oval"      "circle"    NA          "teardrop"  "circle"    "formation"
[16375] "cigar"     "unknown"   "circle"    "oval"      "triangle"  "light"    
[16381] "circle"    "light"     "unknown"   "light"     "sphere"    "circle"   
[16387] "flash"     NA          "formation" "rectangle" "disk"      "disk"     
[16393] "other"     "other"     "changing"  "light"     "light"     NA         
[16399] "fireball"  "circle"    "other"     "light"     "triangle"  "disk"     
[16405] "light"     "light"     "unknown"   "other"     "unknown"   "oval"     
[16411] "cross"     "other"     "oval"      "light"     "cylinder"  "triangle" 
[16417] "cone"      "light"     "formation" "disk"      "triangle"  "formation"
[16423] "light"     "light"     "light"     "fireball"  "circle"    "unknown"  
[16429] "unknown"   "light"     "circle"    "light"     "unknown"   "circle"   
[16435] "fireball"  "light"     "light"     "fireball"  "disk"      "circle"   
[16441] "teardrop"  "disk"      "egg"       "disk"      "oval"      "triangle" 
[16447] "cigar"     "unknown"   "triangle"  "fireball"  "chevron"   "light"    
[16453] "fireball"  "oval"      "other"     "flash"     "light"     "triangle" 
[16459] "light"     "light"     "cigar"     "circle"    "disk"      "oval"     
[16465] "sphere"    "circle"    "light"     "unknown"   "light"     NA         
[16471] "unknown"   "fireball"  "circle"    "chevron"   "other"     "fireball" 
[16477] "light"     "other"     "light"     "fireball"  "disk"      "oval"     
[16483] "light"     "oval"      "disk"      "triangle"  "disk"      "circle"   
[16489] "light"     "sphere"    "cylinder"  "circle"    NA          "unknown"  
[16495] "fireball"  "cylinder"  "circle"    "other"     "fireball"  "light"    
[16501] "sphere"    NA          "other"     "other"     "cylinder"  "changing" 
[16507] "other"     "sphere"    "oval"      "other"     "sphere"    "other"    
[16513] "unknown"   "cylinder"  "rectangle" "sphere"    "oval"      "disk"     
[16519] "light"     "triangle"  "fireball"  "disk"      "other"     "unknown"  
[16525] "circle"    "sphere"    "formation" "fireball"  "circle"    "other"    
[16531] "oval"      "other"     "light"     "unknown"   "light"     "diamond"  
[16537] "light"     "unknown"   "fireball"  "triangle"  "formation" "sphere"   
[16543] "teardrop"  "triangle"  "disk"      "other"     "other"     "light"    
[16549] "oval"      "circle"    "light"     "light"     "light"     "light"    
[16555] "formation" "unknown"   "disk"      "rectangle" "changing"  "circle"   
[16561] "light"     "fireball"  "other"     "triangle"  "cone"      "disk"     
[16567] "circle"    "oval"      "light"     "unknown"   "cigar"     "light"    
[16573] "sphere"    "changing"  "other"     "other"     "fireball"  "circle"   
[16579] "other"     "cigar"     "changing"  "oval"      "diamond"   "light"    
[16585] "rectangle" "sphere"    "light"     "circle"    "other"     "circle"   
[16591] "light"     "triangle"  "fireball"  "triangle"  "unknown"   "cigar"    
[16597] "triangle"  "circle"    "unknown"   "formation" "triangle"  "triangle" 
[16603] "sphere"    "oval"      "flash"     "diamond"   "triangle"  "triangle" 
[16609] "unknown"   "egg"       "triangle"  "light"     "light"     "fireball" 
[16615] "cross"     "sphere"    "unknown"   "circle"    "other"     "triangle" 
[16621] "chevron"   "changing"  "circle"    "disk"      "circle"    "formation"
[16627] "disk"      "other"     "triangle"  "light"     "circle"    "fireball" 
[16633] "light"     NA          "sphere"    "disk"      "changing"  "sphere"   
[16639] "light"     "circle"    "unknown"   "circle"    "circle"    "disk"     
[16645] "other"     "light"     "egg"       "fireball"  "rectangle" "diamond"  
[16651] "triangle"  "light"     "light"     "light"     "circle"    "circle"   
[16657] "sphere"    "light"     "light"     "fireball"  "fireball"  "circle"   
[16663] "circle"    "fireball"  "other"     "teardrop"  "fireball"  "disk"     
[16669] "light"     "circle"    "light"     "fireball"  "light"     "light"    
[16675] "light"     "light"     "teardrop"  "chevron"   "sphere"    NA         
[16681] "triangle"  "light"     "unknown"   "circle"    "disk"      "fireball" 
[16687] "fireball"  "circle"    "disk"      "oval"      "light"     "chevron"  
[16693] "triangle"  "triangle"  "oval"      "light"     "rectangle" "circle"   
[16699] "cone"      "other"     "light"     "circle"    "triangle"  "light"    
[16705] "disk"      "formation" "triangle"  "disk"      "triangle"  "unknown"  
[16711] "diamond"   "other"     "light"     "formation" "fireball"  "triangle" 
[16717] "circle"    "sphere"    "fireball"  "cigar"     NA          "fireball" 
[16723] "fireball"  "oval"      "sphere"    "light"     "disk"      "fireball" 
[16729] "circle"    "unknown"   "flash"     "light"     "triangle"  "sphere"   
[16735] "disk"      "sphere"    "cigar"     "triangle"  "cigar"     "changing" 
[16741] "fireball"  "circle"    "fireball"  "rectangle" "flash"     "oval"     
[16747] "fireball"  "fireball"  "other"     "light"     "circle"    "formation"
[16753] "formation" "light"     "rectangle" "formation" "triangle"  "triangle" 
[16759] "fireball"  "circle"    "light"     "changing"  "oval"      "light"    
[16765] "light"     "unknown"   "triangle"  "sphere"    "light"     "light"    
[16771] "other"     "formation" "triangle"  "unknown"   "sphere"    "fireball" 
[16777] "flash"     "flash"     "triangle"  "cigar"     "light"     "circle"   
[16783] "oval"      "circle"    "circle"    "sphere"    "triangle"  "disk"     
[16789] "fireball"  "other"     "circle"    "fireball"  "fireball"  "cylinder" 
[16795] "triangle"  "other"     "light"     "light"     "unknown"   "other"    
[16801] "fireball"  "oval"      "circle"    "triangle"  "fireball"  "oval"     
[16807] "other"     "light"     "triangle"  "other"     "cylinder"  "sphere"   
[16813] "light"     "teardrop"  "disk"      "sphere"    "triangle"  "light"    
[16819] "disk"      "formation" "circle"    "sphere"    "formation" "changing" 
[16825] "formation" "fireball"  "light"     "light"     "unknown"   "flash"    
[16831] "sphere"    "sphere"    "unknown"   "circle"    "light"     "oval"     
[16837] "fireball"  "oval"      "circle"    "sphere"    "disk"      NA         
[16843] NA          NA          "fireball"  NA          NA          "formation"
[16849] NA          NA          "fireball"  "other"     "other"     "oval"     
[16855] "cylinder"  "cone"      "formation" "cylinder"  "light"     "fireball" 
[16861] "fireball"  "light"     "cigar"     "circle"    "light"     "disk"     
[16867] "disk"      "sphere"    "sphere"    "triangle"  "disk"      "other"    
[16873] "disk"      "formation" "rectangle" "fireball"  "disk"      "circle"   
[16879] "triangle"  "circle"    "egg"       "light"     "triangle"  "light"    
[16885] "circle"    "light"     "sphere"    "oval"      "cigar"     "disk"     
[16891] "oval"      NA          "light"     "formation" "light"     "light"    
[16897] "oval"      "light"     "light"     "egg"       "light"     "light"    
[16903] "flash"     "light"     "disk"      "triangle"  "sphere"    "circle"   
[16909] "cylinder"  "other"     NA          "sphere"    "cigar"     "chevron"  
[16915] "disk"      "oval"      "sphere"    "diamond"   "cylinder"  "circle"   
[16921] "triangle"  "changing"  "light"     "light"     "circle"    "cigar"    
[16927] "light"     "fireball"  "cone"      "other"     "cylinder"  "circle"   
[16933] "unknown"   "sphere"    "sphere"    "unknown"   "fireball"  "triangle" 
[16939] "triangle"  "egg"       "oval"      "other"     "fireball"  "light"    
[16945] "light"     "circle"    "light"     "light"     "light"     "circle"   
[16951] "triangle"  NA          "circle"    "light"     "diamond"   "diamond"  
[16957] "unknown"   "circle"    "light"     NA          "light"     "other"    
[16963] "cylinder"  "flash"     "circle"    "circle"    "triangle"  "disk"     
[16969] "formation" "other"     "light"     "changing"  "fireball"  "fireball" 
[16975] "fireball"  "circle"    "light"     "fireball"  "circle"    "light"    
[16981] "unknown"   "disk"      "other"     "disk"      "teardrop"  "sphere"   
[16987] "light"     "sphere"    "disk"      "light"     "formation" "light"    
[16993] "unknown"   "oval"      "circle"    "disk"      NA          "unknown"  
[16999] "unknown"   "sphere"    "light"     "disk"      "light"     "light"    
[17005] "disk"      "disk"      "sphere"    "cylinder"  "sphere"    "unknown"  
[17011] "disk"      "light"     "light"     "light"     "triangle"  "changing" 
[17017] "triangle"  "flash"     "changing"  "chevron"   "light"     "oval"     
[17023] "cigar"     "light"     "light"     "triangle"  "fireball"  "flash"    
[17029] "light"     "rectangle" "teardrop"  "triangle"  "triangle"  "unknown"  
[17035] "unknown"   "light"     "flash"     "circle"    "circle"    "other"    
[17041] "unknown"   "changing"  "fireball"  "disk"      "unknown"   "unknown"  
[17047] NA          "triangle"  "triangle"  "triangle"  "triangle"  "triangle" 
[17053] "light"     "light"     NA          "cigar"     "formation" "cigar"    
[17059] "changing"  "diamond"   "cigar"     "light"     NA          "circle"   
[17065] "disk"      "light"     "light"     "other"     "light"     "light"    
[17071] "light"     "circle"    "light"     "triangle"  "egg"       "disk"     
[17077] "sphere"    "disk"      "light"     "triangle"  NA          "light"    
[17083] "light"     "triangle"  "light"     "sphere"    "light"     "sphere"   
[17089] "light"     "light"     "circle"    "triangle"  "changing"  "triangle" 
[17095] "unknown"   "oval"      "light"     "unknown"   "chevron"   "other"    
[17101] "light"     "changing"  "triangle"  "fireball"  "flash"     "teardrop" 
[17107] "light"     NA          "oval"      "rectangle" "circle"    "disk"     
[17113] "egg"       "light"     "other"     "rectangle" "light"     "sphere"   
[17119] "formation" "light"     "fireball"  "chevron"   "formation" "light"    
[17125] "light"     "light"     "circle"    "oval"      "circle"    "formation"
[17131] "circle"    "triangle"  "light"     "changing"  "light"     "light"    
[17137] "light"     "light"     "sphere"    "circle"    "fireball"  "oval"     
[17143] "light"     "chevron"   "triangle"  "disk"      "unknown"   "formation"
[17149] "light"     "light"     "circle"    "light"     "triangle"  "light"    
[17155] "circle"    "changing"  "circle"    "unknown"   "chevron"   "changing" 
[17161] "fireball"  "unknown"   "circle"    "rectangle" "unknown"   "unknown"  
[17167] "fireball"  "cylinder"  "sphere"    "circle"    "other"     NA         
[17173] "changing"  "cigar"     "unknown"   "light"     "disk"      "circle"   
[17179] "triangle"  "triangle"  "formation" "other"     "other"     "fireball" 
[17185] "unknown"   "triangle"  "circle"    "flash"     "sphere"    "fireball" 
[17191] "light"     "light"     "light"     "disk"      "circle"    NA         
[17197] "flash"     "diamond"   "unknown"   "chevron"   "other"     "formation"
[17203] "other"     "unknown"   "sphere"    "teardrop"  "formation" "triangle" 
[17209] "light"     "fireball"  "rectangle" "formation" "triangle"  "unknown"  
[17215] "light"     "sphere"    "unknown"   "sphere"    "circle"    "other"    
[17221] "circle"    "disk"      "sphere"    "disk"      "light"     "disk"     
[17227] "diamond"   "other"     "other"     "rectangle" "circle"    "other"    
[17233] "triangle"  "fireball"  NA          "other"     "light"     NA         
[17239] NA          NA          "sphere"    "cylinder"  "light"     NA         
[17245] "fireball"  "fireball"  "unknown"   "changing"  "light"     "changing" 
[17251] "cone"      "fireball"  "light"     "diamond"   "light"     "unknown"  
[17257] "triangle"  "disk"      "light"     "fireball"  "other"     "triangle" 
[17263] "light"     "light"     "unknown"   "disk"      "rectangle" "cone"     
[17269] "cylinder"  "triangle"  "triangle"  "light"     NA          "sphere"   
[17275] NA          "other"     "fireball"  "light"     "oval"      "oval"     
[17281] "oval"      "formation" "circle"    "fireball"  "sphere"    "unknown"  
[17287] "circle"    "triangle"  "cigar"     "chevron"   "oval"      "chevron"  
[17293] "fireball"  "light"     "triangle"  "other"     "light"     "fireball" 
[17299] "light"     "light"     "triangle"  "light"     "circle"    "unknown"  
[17305] "fireball"  "oval"      "sphere"    "circle"    "oval"      "cylinder" 
[17311] "light"     "fireball"  "fireball"  "sphere"    "oval"      "other"    
[17317] "light"     "chevron"   "triangle"  "light"     "other"     "light"    
[17323] "changing"  "fireball"  "circle"    "disk"      "light"     "formation"
[17329] "triangle"  "circle"    "light"     "unknown"   NA          "unknown"  
[17335] "circle"    "unknown"   "light"     "light"     "light"     "teardrop" 
[17341] "unknown"   "circle"    "light"     "light"     "triangle"  "disk"     
[17347] "light"     "other"     "light"     "cylinder"  "teardrop"  "teardrop" 
[17353] "oval"      "cigar"     "light"     "changing"  "circle"    "formation"
[17359] "flash"     "light"     "disk"      "disk"      "changing"  "formation"
[17365] "other"     "triangle"  "triangle"  "other"     "other"     "fireball" 
[17371] "sphere"    "disk"      "fireball"  "other"     "light"     "formation"
[17377] "sphere"    "formation" "diamond"   "light"     "light"     "light"    
[17383] "formation" "light"     "light"     "other"     "rectangle" "unknown"  
[17389] "triangle"  "light"     "triangle"  "fireball"  "unknown"   "oval"     
[17395] "disk"      "unknown"   "oval"      "light"     "light"     "flash"    
[17401] "unknown"   "sphere"    "unknown"   "fireball"  "rectangle" "circle"   
[17407] "disk"      "circle"    "circle"    "other"     "circle"    "disk"     
[17413] "unknown"   "cigar"     "triangle"  "flash"     "chevron"   "rectangle"
[17419] "unknown"   "rectangle" "sphere"    "other"     "other"     "light"    
[17425] "triangle"  "sphere"    "disk"      "sphere"    "disk"      "fireball" 
[17431] "cigar"     "triangle"  "sphere"    "circle"    "unknown"   "triangle" 
[17437] "light"     "disk"      "triangle"  "triangle"  "disk"      "oval"     
[17443] "triangle"  "light"     "sphere"    "unknown"   "rectangle" "triangle" 
[17449] "unknown"   "unknown"   "light"     "triangle"  "formation" "changing" 
[17455] "diamond"   "disk"      "disk"      "chevron"   "disk"      "triangle" 
[17461] "triangle"  "fireball"  "oval"      "light"     "cigar"     NA         
[17467] "light"     "other"     "fireball"  "sphere"    "oval"      "formation"
[17473] "diamond"   "disk"      "light"     "unknown"   "light"     "triangle" 
[17479] "circle"    "unknown"   "other"     "fireball"  "cylinder"  "teardrop" 
[17485] "formation" "unknown"   "changing"  "light"     "disk"      "light"    
[17491] "flash"     "circle"    "diamond"   "unknown"   "fireball"  "circle"   
[17497] "flash"     "triangle"  "light"     "other"     "triangle"  "light"    
[17503] "light"     "sphere"    "other"     "oval"      "sphere"    "light"    
[17509] "light"     "triangle"  "unknown"   "other"     "rectangle" "light"    
[17515] "flash"     "disk"      "triangle"  "light"     "circle"    "circle"   
[17521] "circle"    "fireball"  "circle"    "triangle"  "sphere"    "fireball" 
[17527] "sphere"    "unknown"   "triangle"  "light"     "triangle"  "disk"     
[17533] "circle"    "circle"    "triangle"  "unknown"   "changing"  "light"    
[17539] "oval"      "light"     "oval"      "changing"  "changing"  "fireball" 
[17545] "light"     "light"     "chevron"   "rectangle" "other"     "light"    
[17551] "fireball"  "unknown"   NA          "triangle"  "sphere"    "other"    
[17557] "unknown"   "fireball"  "light"     "sphere"    "light"     "light"    
[17563] "fireball"  "light"     "light"     "light"     "fireball"  "circle"   
[17569] "fireball"  "triangle"  "fireball"  "circle"    "fireball"  "triangle" 
[17575] "teardrop"  "triangle"  "formation" "chevron"   "light"     "sphere"   
[17581] "unknown"   "circle"    "triangle"  "circle"    "triangle"  "diamond"  
[17587] "light"     "light"     "circle"    "circle"    "other"     "other"    
[17593] "triangle"  "light"     "fireball"  "triangle"  "formation" "sphere"   
[17599] "fireball"  "chevron"   "light"     "cigar"     "fireball"  "circle"   
[17605] "light"     "cylinder"  "sphere"    "sphere"    "light"     "sphere"   
[17611] "other"     "sphere"    "unknown"   NA          "light"     "other"    
[17617] "formation" "light"     "light"     "circle"    "cigar"     "light"    
[17623] "sphere"    NA          NA          "triangle"  "light"     "oval"     
[17629] "other"     "circle"    "oval"      "oval"      "light"     "flash"    
[17635] NA          "light"     NA          NA          NA          "other"    
[17641] "changing"  "diamond"   "sphere"    "oval"      "fireball"  "circle"   
[17647] "fireball"  "unknown"   "fireball"  "light"     "unknown"   "light"    
[17653] "egg"       "triangle"  "light"     "unknown"   "light"     "light"    
[17659] "unknown"   "light"     "unknown"   "formation" "other"     "cylinder" 
[17665] "light"     NA          "other"     "teardrop"  "fireball"  "oval"     
[17671] "light"     "other"     "sphere"    "light"     "light"     NA         
[17677] "circle"    "unknown"   "fireball"  "other"     "light"     "changing" 
[17683] "unknown"   "oval"      "cylinder"  "light"     "light"     "light"    
[17689] "egg"       "other"     "light"     NA          "cylinder"  "light"    
[17695] "other"     "triangle"  "chevron"   "light"     "fireball"  "fireball" 
[17701] "flash"     "changing"  "light"     "other"     "oval"      "other"    
[17707] "cigar"     "oval"      "unknown"   "light"     "light"     "circle"   
[17713] "light"     "rectangle" "circle"    "flash"     "other"     "unknown"  
[17719] "sphere"    "chevron"   "fireball"  "triangle"  "changing"  "chevron"  
[17725] "diamond"   "formation" "light"     "other"     "unknown"   "triangle" 
[17731] "other"     "rectangle" "other"     "other"     "formation" "changing" 
[17737] "light"     "other"     "formation" "flash"     "rectangle" "unknown"  
[17743] "other"     "chevron"   "triangle"  "formation" "sphere"    "other"    
[17749] "chevron"   "disk"      "triangle"  "formation" "triangle"  "other"    
[17755] "unknown"   "unknown"   "triangle"  "light"     "chevron"   "triangle" 
[17761] NA          "diamond"   "light"     "rectangle" "formation" "other"    
[17767] "chevron"   "triangle"  "other"     "sphere"    "triangle"  "oval"     
[17773] "other"     "teardrop"  "cylinder"  "changing"  "light"     "circle"   
[17779] "oval"      "changing"  "triangle"  "triangle"  "light"     "disk"     
[17785] "light"     "unknown"   "changing"  "unknown"   "disk"      "light"    
[17791] "circle"    "unknown"   "light"     "sphere"    "other"     "other"    
[17797] "other"     "egg"       "circle"    "light"     "flash"     NA         
[17803] "circle"    "circle"    "fireball"  "unknown"   "light"     "formation"
[17809] "light"     "light"     "other"     "other"     "triangle"  "unknown"  
[17815] "disk"      "light"     "triangle"  "oval"      "triangle"  "triangle" 
[17821] "light"     "light"     "other"     "sphere"    "circle"    "circle"   
[17827] "disk"      "disk"      "unknown"   "fireball"  "fireball"  "diamond"  
[17833] "triangle"  "formation" "oval"      "light"     "circle"    "light"    
[17839] "flash"     "circle"    "light"     "other"     "triangle"  "triangle" 
[17845] "light"     "fireball"  "formation" "fireball"  "flash"     "circle"   
[17851] "fireball"  "fireball"  "chevron"   "formation" "fireball"  "fireball" 
[17857] "triangle"  "triangle"  "disk"      "flash"     NA          "cigar"    
[17863] "changing"  "cigar"     "cylinder"  "circle"    "sphere"    "light"    
[17869] "circle"    "light"     "light"     "sphere"    "circle"    "light"    
[17875] "unknown"   NA          "circle"    "disk"      "oval"      "fireball" 
[17881] "circle"    "triangle"  "formation" "circle"    "circle"    "circle"   
[17887] "triangle"  "circle"    "light"     "cigar"     "other"     "other"    
[17893] "rectangle" "formation" "circle"    "oval"      "circle"    "disk"     
[17899] "changing"  "triangle"  "oval"      NA          "light"     "flash"    
[17905] "fireball"  "fireball"  "light"     "fireball"  "light"     "light"    
[17911] "disk"      "oval"      "light"     "teardrop"  "circle"    "circle"   
[17917] "fireball"  "light"     "flash"     "light"     "changing"  "other"    
[17923] "oval"      "triangle"  "formation" "disk"      "cigar"     "triangle" 
[17929] "light"     NA          "unknown"   "light"     NA          "cigar"    
[17935] "circle"    "changing"  "disk"      "triangle"  "unknown"   "sphere"   
[17941] NA          "cross"     "other"     "disk"      "light"     "rectangle"
[17947] "oval"      "sphere"    "light"     "light"     NA          "light"    
[17953] "light"     "light"     "fireball"  "light"     "diamond"   "other"    
[17959] "light"     "light"     "light"     "sphere"    "disk"      "changing" 
[17965] "other"     "unknown"   "light"     "fireball"  "light"     "triangle" 
[17971] "light"     "triangle"  "triangle"  "cigar"     "light"     "sphere"   
[17977] "light"     "fireball"  "triangle"  "circle"    "oval"      "fireball" 
[17983] "circle"    "light"     "unknown"   "disk"      "light"     "light"    
[17989] "triangle"  "triangle"  "light"     "fireball"  "other"     "light"    
[17995] "triangle"  "changing"  "light"     "other"     "unknown"   "unknown"  
[18001] "light"     "oval"      "light"     "sphere"    "light"     "fireball" 
[18007] "triangle"  "triangle"  "fireball"  "circle"    "fireball"  "flash"    
[18013] "cylinder"  "fireball"  "triangle"  "fireball"  "sphere"    "formation"
[18019] "light"     "fireball"  "light"     "light"     "light"     "unknown"  
[18025] "unknown"   "unknown"   "fireball"  "flash"     "triangle"  "light"    
[18031] "oval"      "flash"     "sphere"    "flash"     "unknown"   "light"    
[18037] "flash"     "triangle"  "disk"      "light"     "light"     "unknown"  
[18043] "circle"    "fireball"  "other"     "light"     NA          "fireball" 
[18049] "circle"    "light"     "cigar"     "light"     "light"     "rectangle"
[18055] "triangle"  "unknown"   "sphere"    "light"     "light"     "rectangle"
[18061] "light"     "circle"    "light"     "unknown"   "light"     "disk"     
[18067] NA          "light"     "light"     "light"     "light"     "sphere"   
[18073] "other"     "sphere"    "light"     "triangle"  "triangle"  "other"    
[18079] "sphere"    "sphere"    "fireball"  "fireball"  "oval"      "fireball" 
[18085] "cigar"     "fireball"  NA          "light"     "fireball"  "other"    
[18091] "fireball"  "fireball"  "formation" "circle"    "light"     "other"    
[18097] "triangle"  "light"     "chevron"   "light"     "sphere"    "other"    
[18103] "oval"      "circle"    "disk"      "triangle"  "light"     "cylinder" 
[18109] "light"     "disk"      "triangle"  "disk"      "oval"      NA         
[18115] "chevron"   "disk"      "triangle"  "formation" "light"     "cigar"    
[18121] "unknown"   "fireball"  "other"     "light"     "other"     "light"    
[18127] "teardrop"  "light"     "light"     "disk"      "disk"      "flash"    
[18133] "triangle"  "cigar"     "sphere"    "light"     "light"     "fireball" 
[18139] "circle"    "light"     "triangle"  "light"     "formation" "egg"      
[18145] "disk"      "unknown"   "formation" "disk"      "triangle"  "circle"   
[18151] "light"     "fireball"  "fireball"  "light"     "other"     "formation"
[18157] "oval"      "unknown"   "light"     "egg"       "rectangle" "circle"   
[18163] "circle"    "cylinder"  "light"     "other"     "light"     "triangle" 
[18169] "sphere"    "changing"  "fireball"  "flash"     "formation" "light"    
[18175] "sphere"    "light"     "fireball"  "triangle"  "light"     "other"    
[18181] "triangle"  "light"     "fireball"  "other"     "fireball"  "circle"   
[18187] "fireball"  "light"     "fireball"  "disk"      "unknown"   "disk"     
[18193] "triangle"  "circle"    "oval"      "light"     "sphere"    "triangle" 
[18199] "circle"    "unknown"   "disk"      "unknown"   "circle"    "teardrop" 
[18205] "sphere"    "triangle"  "light"     "light"     "other"     "fireball" 
[18211] "light"     "other"     "other"     "disk"      "changing"  "fireball" 
[18217] "other"     "light"     "rectangle" "rectangle" "rectangle" "triangle" 
[18223] "cylinder"  "light"     "light"     "triangle"  "other"     "triangle" 
[18229] "triangle"  "triangle"  "other"     "circle"    "other"     "unknown"  
[18235] "other"     "cylinder"  "unknown"   "triangle"  "other"     NA         
[18241] "cigar"     "circle"    "changing"  "cigar"     "light"     "light"    
[18247] "rectangle" "circle"    "unknown"   "triangle"  "chevron"   "light"    
[18253] "light"     "formation" "flash"     "formation" "unknown"   "chevron"  
[18259] "triangle"  "formation" "teardrop"  NA          "light"     "disk"     
[18265] "sphere"    "circle"    "circle"    "light"     "other"     "light"    
[18271] "fireball"  "chevron"   "disk"      "light"     "light"     "light"    
[18277] "triangle"  "circle"    "oval"      "light"     "other"     "changing" 
[18283] "fireball"  "unknown"   "light"     "other"     "sphere"    "light"    
[18289] "light"     "cigar"     "formation" "fireball"  "disk"      "fireball" 
[18295] "light"     "sphere"    "unknown"   "disk"      "unknown"   "circle"   
[18301] "circle"    "triangle"  NA          "sphere"    "oval"      "light"    
[18307] "fireball"  "triangle"  "light"     "light"     "other"     "flash"    
[18313] "sphere"    "oval"      "disk"      "unknown"   "triangle"  "fireball" 
[18319] "cross"     "triangle"  "triangle"  "light"     "light"     "rectangle"
[18325] "fireball"  "other"     "unknown"   "triangle"  "circle"    "formation"
[18331] "flash"     "flash"     "triangle"  "light"     "sphere"    "triangle" 
[18337] "fireball"  "oval"      "circle"    "other"     "other"     "flash"    
[18343] "oval"      "circle"    "light"     "sphere"    "fireball"  "sphere"   
[18349] "fireball"  "light"     "light"     "disk"      "unknown"   "flash"    
[18355] "unknown"   "circle"    "oval"      "light"     "other"     "oval"     
[18361] NA          "cylinder"  "changing"  "cylinder"  "other"     NA         
[18367] "circle"    "circle"    "cone"      "other"     "sphere"    "rectangle"
[18373] "unknown"   "unknown"   "light"     "fireball"  "fireball"  "unknown"  
[18379] "fireball"  "unknown"   "light"     "disk"      "circle"    "fireball" 
[18385] "sphere"    "sphere"    "light"     "triangle"  "other"     "sphere"   
[18391] "light"     "flash"     "fireball"  "flash"     "unknown"   "light"    
[18397] "fireball"  "light"     "circle"    "unknown"   "cross"     "circle"   
[18403] "other"     "oval"      "light"     "circle"    "cylinder"  "unknown"  
[18409] "formation" "other"     "disk"      "disk"      "other"     "light"    
[18415] "light"     "fireball"  "other"     "unknown"   "light"     "light"    
[18421] "fireball"  "sphere"    "light"     "formation" "light"     "light"    
[18427] "light"     "sphere"    "unknown"   "fireball"  "formation" "light"    
[18433] "fireball"  "light"     "fireball"  "chevron"   "sphere"    "fireball" 
[18439] "fireball"  "light"     "flash"     "oval"      NA          "disk"     
[18445] "circle"    "fireball"  "rectangle" "cigar"     "fireball"  "sphere"   
[18451] "fireball"  "light"     "other"     "flash"     "circle"    "formation"
[18457] "circle"    "circle"    "diamond"   "light"     "changing"  "fireball" 
[18463] "circle"    "light"     "light"     "light"     "circle"    "other"    
[18469] "formation" "cigar"     "disk"      "disk"      "disk"      "disk"     
[18475] "egg"       NA          "cigar"     NA          "light"     "other"    
[18481] "other"     "light"     "triangle"  "light"     "circle"    NA         
[18487] "light"     NA          "light"     "diamond"   "chevron"   "other"    
[18493] "circle"    "disk"      "circle"    "fireball"  "light"     "fireball" 
[18499] "fireball"  "triangle"  "chevron"   "triangle"  "diamond"   "other"    
[18505] "other"     "triangle"  "triangle"  "light"     "light"     "light"    
[18511] "circle"    "light"     "fireball"  "circle"    "light"     "triangle" 
[18517] "disk"      "unknown"   "other"     "sphere"    "other"     "light"    
[18523] "unknown"   "light"     "fireball"  "light"     "fireball"  "changing" 
[18529] "triangle"  "teardrop"  "light"     "sphere"    "triangle"  "light"    
[18535] "fireball"  "unknown"   "changing"  "other"     "other"     "unknown"  
[18541] "fireball"  "light"     "disk"      "light"     "other"     "rectangle"
[18547] "light"     "light"     "triangle"  "other"     "light"     "triangle" 
[18553] "disk"      "other"     "rectangle" "rectangle" "light"     "unknown"  
[18559] "light"     "oval"      "circle"    "cigar"     "rectangle" "triangle" 
[18565] "sphere"    "circle"    "light"     "disk"      "egg"       "light"    
[18571] "triangle"  "unknown"   "other"     "triangle"  "circle"    "flash"    
[18577] "sphere"    "triangle"  "other"     "sphere"    "rectangle" NA         
[18583] "teardrop"  "other"     "oval"      "oval"      "disk"      "changing" 
[18589] "circle"    "light"     "triangle"  "sphere"    "unknown"   "other"    
[18595] "circle"    "unknown"   "triangle"  "diamond"   "oval"      "other"    
[18601] "disk"      "circle"    "triangle"  "fireball"  "oval"      "chevron"  
[18607] "unknown"   "disk"      "circle"    "cigar"     "rectangle" "changing" 
[18613] "triangle"  "unknown"   "light"     "rectangle" "unknown"   "light"    
[18619] "circle"    NA          NA          "light"     "fireball"  "flash"    
[18625] "circle"    "disk"      "light"     "other"     "chevron"   "disk"     
[18631] "circle"    "diamond"   "fireball"  "light"     "sphere"    "cigar"    
[18637] "light"     "flash"     "sphere"    "unknown"   "light"     "fireball" 
[18643] "rectangle" "light"     "other"     "circle"    "cross"     "oval"     
[18649] "light"     "unknown"   "light"     "triangle"  "light"     "oval"     
[18655] "unknown"   "light"     "sphere"    "changing"  "circle"    "chevron"  
[18661] "unknown"   "triangle"  "circle"    "circle"    "other"     "fireball" 
[18667] "circle"    "light"     "cone"      "light"     "light"     "triangle" 
[18673] "cylinder"  "other"     "cylinder"  "light"     "light"     "teardrop" 
[18679] "oval"      "other"     "changing"  "triangle"  "circle"    "fireball" 
[18685] "light"     "fireball"  "unknown"   "changing"  "triangle"  "light"    
[18691] "triangle"  "triangle"  "oval"      "light"     "disk"      "unknown"  
[18697] "light"     "disk"      "other"     "disk"      "chevron"   NA         
[18703] NA          "sphere"    "flash"     "other"     "circle"    "disk"     
[18709] "oval"      "circle"    NA          NA          NA          NA         
[18715] "oval"      "teardrop"  "sphere"    NA          "circle"    "light"    
[18721] "triangle"  "triangle"  "unknown"   "other"     "diamond"   "triangle" 
[18727] "sphere"    "disk"      "fireball"  "fireball"  "light"     "triangle" 
[18733] "diamond"   "cigar"     "disk"      "egg"       "other"     "other"    
[18739] "other"     "light"     "triangle"  "teardrop"  "unknown"   "oval"     
[18745] "other"     "light"     "triangle"  "other"     "disk"      "oval"     
[18751] "light"     "circle"    "triangle"  "sphere"    "diamond"   "oval"     
[18757] "egg"       "fireball"  "sphere"    "light"     "fireball"  "fireball" 
[18763] "cigar"     "fireball"  "circle"    "unknown"   NA          "unknown"  
[18769] "light"     "disk"      "disk"      "other"     "triangle"  "circle"   
[18775] "circle"    "other"     "changing"  "unknown"   "changing"  "cigar"    
[18781] "light"     "light"     "cross"     "other"     "oval"      "circle"   
[18787] "disk"      "cigar"     "chevron"   "chevron"   "flash"     "unknown"  
[18793] "other"     "teardrop"  NA          "sphere"    "rectangle" "circle"   
[18799] "light"     "other"     "light"     "changing"  "light"     "circle"   
[18805] "cigar"     "changing"  "triangle"  "cone"      "other"     "other"    
[18811] "cigar"     "cigar"     "cone"      "other"     "other"     "other"    
[18817] "unknown"   "light"     "fireball"  "other"     "cigar"     "sphere"   
[18823] "other"     "light"     "other"     "fireball"  "cylinder"  "other"    
[18829] "rectangle" "unknown"   "other"     "cylinder"  "unknown"   "unknown"  
[18835] "oval"      "disk"      "triangle"  "disk"      "sphere"    "cylinder" 
[18841] "unknown"   "formation" "unknown"   "light"     "fireball"  "oval"     
[18847] "fireball"  "unknown"   "triangle"  "other"     "flash"     "disk"     
[18853] "sphere"    "light"     "disk"      "rectangle" "circle"    "cylinder" 
[18859] "disk"      "disk"      "disk"      "disk"      "circle"    "disk"     
[18865] "cigar"     "sphere"    "fireball"  "light"     "flash"     "cigar"    
[18871] "other"     "triangle"  "light"     "unknown"   "unknown"   "light"    
[18877] "oval"      "other"     "unknown"   "sphere"    "triangle"  "disk"     
[18883] "unknown"   "circle"    "light"     "fireball"  "fireball"  "fireball" 
[18889] "light"     "light"     "light"     "unknown"   NA          "light"    
[18895] "cigar"     "disk"      "circle"    "circle"    "light"     "light"    
[18901] "oval"      "sphere"    "unknown"   "triangle"  NA          "rectangle"
[18907] "fireball"  "light"     "sphere"    "light"     "light"     "light"    
[18913] "circle"    "light"     "unknown"   "unknown"   "light"     "other"    
[18919] "sphere"    NA          "fireball"  "light"     "triangle"  "disk"     
[18925] "light"     "fireball"  "light"     "circle"    "fireball"  "fireball" 
[18931] "formation" "disk"      "oval"      "diamond"   NA          "unknown"  
[18937] "fireball"  "formation" "light"     "triangle"  "cigar"     "other"    
[18943] "light"     "circle"    "changing"  "triangle"  "other"     "light"    
[18949] "teardrop"  "light"     "light"     "triangle"  "light"     "light"    
[18955] "light"     "light"     "light"     "fireball"  "light"     "circle"   
[18961] "triangle"  "unknown"   "diamond"   "light"     "flash"     "unknown"  
[18967] "other"     "light"     "fireball"  "fireball"  "triangle"  "fireball" 
[18973] "light"     "triangle"  "triangle"  "triangle"  "unknown"   "oval"     
[18979] "unknown"   "fireball"  "fireball"  "sphere"    "circle"    "other"    
[18985] "other"     "other"     "cone"      "disk"      "circle"    "changing" 
[18991] "light"     "light"     "egg"       "triangle"  "light"     "light"    
[18997] "flash"     "oval"      "fireball"  "disk"      "light"     "triangle" 
[19003] "circle"    "disk"      "light"     "unknown"   "light"     "triangle" 
[19009] "circle"    "other"     "oval"      "fireball"  "light"     "circle"   
[19015] "cylinder"  "light"     "other"     "unknown"   "light"     "triangle" 
[19021] "oval"      "sphere"    "fireball"  "cone"      "other"     "triangle" 
[19027] "light"     "oval"      "sphere"    "light"     "fireball"  NA         
[19033] "unknown"   "oval"      "formation" "oval"      "sphere"    "sphere"   
[19039] "light"     "light"     "light"     "cylinder"  "unknown"   "light"    
[19045] "light"     "disk"      "light"     "egg"       "sphere"    "diamond"  
[19051] "flash"     "triangle"  "flash"     "changing"  "circle"    "light"    
[19057] "unknown"   "other"     "light"     "teardrop"  "flash"     "diamond"  
[19063] "triangle"  "unknown"   "diamond"   "fireball"  "other"     "formation"
[19069] "oval"      "formation" "formation" "light"     "teardrop"  "cylinder" 
[19075] "chevron"   "other"     "unknown"   "oval"      "cigar"     "formation"
[19081] "triangle"  "disk"      "circle"    "circle"    "circle"    "unknown"  
[19087] "light"     "sphere"    "fireball"  "disk"      "fireball"  "unknown"  
[19093] "other"     "cigar"     NA          "diamond"   "rectangle" "disk"     
[19099] "light"     "other"     "rectangle" "light"     "fireball"  "cigar"    
[19105] "unknown"   "fireball"  "light"     "formation" "rectangle" "disk"     
[19111] "circle"    "sphere"    "other"     "triangle"  "formation" "triangle" 
[19117] "formation" "light"     "light"     "sphere"    "oval"      "other"    
[19123] "oval"      "light"     "triangle"  NA          NA          NA         
[19129] NA          "light"     NA          NA          "triangle"  "light"    
[19135] "circle"    "light"     "circle"    "oval"      "other"     "triangle" 
[19141] "triangle"  "triangle"  "cigar"     "fireball"  "fireball"  "flash"    
[19147] "fireball"  "cross"     "cigar"     "oval"      "fireball"  "oval"     
[19153] "other"     "formation" "light"     "flash"     "light"     "circle"   
[19159] "changing"  "formation" "triangle"  "triangle"  "formation" "light"    
[19165] "disk"      "unknown"   "teardrop"  "triangle"  "fireball"  "fireball" 
[19171] "flash"     "unknown"   "light"     "rectangle" "other"     "triangle" 
[19177] "fireball"  "diamond"   "unknown"   "triangle"  "light"     "light"    
[19183] "triangle"  "cylinder"  "other"     "fireball"  "sphere"    "sphere"   
[19189] "disk"      "triangle"  "changing"  "formation" "triangle"  "diamond"  
[19195] "triangle"  "formation" "other"     "cigar"     "unknown"   "light"    
[19201] "triangle"  "triangle"  "fireball"  "formation" "cylinder"  "fireball" 
[19207] "other"     "unknown"   "fireball"  "disk"      "rectangle" "rectangle"
[19213] "formation" "other"     "formation" "formation" "fireball"  "formation"
[19219] "light"     "formation" "fireball"  "cone"      "fireball"  "unknown"  
[19225] "formation" "cylinder"  "fireball"  "other"     "changing"  "light"    
[19231] "light"     "formation" "fireball"  "unknown"   "formation" "sphere"   
[19237] "fireball"  "circle"    "formation" "formation" "other"     "circle"   
[19243] "formation" "other"     "sphere"    "cigar"     "unknown"   "cigar"    
[19249] "other"     "teardrop"  "formation" "sphere"    "circle"    "disk"     
[19255] "unknown"   "disk"      "light"     NA          "circle"    "unknown"  
[19261] "rectangle" "rectangle" "fireball"  "circle"    "fireball"  "disk"     
[19267] "light"     "disk"      "circle"    "triangle"  "changing"  "other"    
[19273] "circle"    "unknown"   "oval"      "cylinder"  "fireball"  "formation"
[19279] "fireball"  "light"     "light"     "fireball"  "light"     "formation"
[19285] "diamond"   "chevron"   "unknown"   "other"     "formation" "disk"     
[19291] "fireball"  "cylinder"  "flash"     "other"     "other"     "teardrop" 
[19297] "disk"      "cylinder"  "egg"       "other"     "triangle"  "disk"     
[19303] "circle"    "light"     "sphere"    "triangle"  "fireball"  "fireball" 
[19309] "fireball"  "triangle"  "cylinder"  "fireball"  "triangle"  "fireball" 
[19315] "fireball"  "unknown"   "sphere"    "fireball"  "chevron"   "light"    
[19321] "flash"     "triangle"  "changing"  "other"     "teardrop"  "light"    
[19327] "other"     "changing"  "circle"    "circle"    "cigar"     "unknown"  
[19333] "unknown"   "unknown"   "triangle"  "other"     "light"     "circle"   
[19339] "triangle"  NA          "disk"      "cigar"     "light"     "other"    
[19345] "fireball"  "other"     "other"     "other"     "triangle"  "rectangle"
[19351] "disk"      "oval"      "other"     "light"     "other"     "circle"   
[19357] "unknown"   "light"     "fireball"  "unknown"   "oval"      "unknown"  
[19363] "oval"      "sphere"    "teardrop"  "circle"    "formation" "formation"
[19369] "changing"  "disk"      "other"     "teardrop"  "disk"      "circle"   
[19375] "other"     "circle"    "light"     "other"     NA          "light"    
[19381] "cigar"     NA          "other"     "changing"  NA          "light"    
[19387] "other"     "diamond"   "light"     "light"     "sphere"    "cone"     
[19393] "oval"      "cigar"     "diamond"   "light"     "changing"  "other"    
[19399] "changing"  "circle"    "fireball"  "light"     "light"     "oval"     
[19405] "sphere"    "disk"      "fireball"  "disk"      "rectangle" "triangle" 
[19411] "other"     "light"     "oval"      "light"     "other"     "unknown"  
[19417] "fireball"  "triangle"  "light"     "circle"    "fireball"  "light"    
[19423] "rectangle" "flash"     "other"     "other"     "triangle"  "oval"     
[19429] "sphere"    "diamond"   "teardrop"  "light"     "changing"  "triangle" 
[19435] "light"     "light"     "triangle"  "light"     "light"     "circle"   
[19441] "triangle"  "other"     "other"     "other"     "triangle"  "other"    
[19447] "circle"    "cylinder"  "oval"      "oval"      "chevron"   "triangle" 
[19453] "sphere"    "sphere"    "other"     "other"     "light"     "other"    
[19459] "triangle"  "triangle"  "circle"    "circle"    "other"     "other"    
[19465] "circle"    "formation" "circle"    "disk"      "fireball"  "light"    
[19471] "fireball"  "triangle"  "circle"    "circle"    "triangle"  "egg"      
[19477] "light"     "triangle"  "formation" "formation" "light"     "light"    
[19483] "fireball"  "triangle"  "other"     "changing"  "sphere"    "unknown"  
[19489] "triangle"  "oval"      "disk"      "sphere"    "rectangle" "formation"
[19495] "formation" "light"     "triangle"  "circle"    "fireball"  "light"    
[19501] "fireball"  "fireball"  "light"     "fireball"  "oval"      "unknown"  
[19507] "circle"    "disk"      "fireball"  "light"     "other"     "sphere"   
[19513] "light"     "fireball"  "light"     "circle"    "rectangle" "fireball" 
[19519] "changing"  "sphere"    "changing"  "diamond"   "fireball"  "light"    
[19525] "light"     "light"     "unknown"   "circle"    "sphere"    "changing" 
[19531] "other"     "formation" "circle"    "light"     "flash"     "circle"   
[19537] "fireball"  NA          "fireball"  "light"     "changing"  "light"    
[19543] "egg"       "sphere"    "circle"    "circle"    "disk"      "disk"     
[19549] "sphere"    "light"     "changing"  "light"     "light"     "triangle" 
[19555] "circle"    "other"     "oval"      "cigar"     "unknown"   "triangle" 
[19561] "disk"      "light"     "cigar"     "sphere"    "light"     "disk"     
[19567] "light"     "fireball"  "oval"      NA          "unknown"   NA         
[19573] "fireball"  "changing"  "light"     "other"     "cigar"     "light"    
[19579] "circle"    "fireball"  "light"     NA          "other"     "diamond"  
[19585] "triangle"  "unknown"   "disk"      "light"     "unknown"   "teardrop" 
[19591] "unknown"   "circle"    "light"     "light"     "unknown"   "light"    
[19597] "circle"    "oval"      "disk"      "triangle"  "teardrop"  "unknown"  
[19603] "unknown"   "changing"  "oval"      "teardrop"  "other"     "light"    
[19609] "light"     "circle"    "other"     "triangle"  "sphere"    "sphere"   
[19615] "light"     "oval"      "sphere"    "oval"      "flash"     "formation"
[19621] "formation" "light"     "triangle"  "light"     "sphere"    "unknown"  
[19627] "chevron"   "light"     "other"     "disk"      "sphere"    "light"    
[19633] "triangle"  "sphere"    "light"     "triangle"  "triangle"  "triangle" 
[19639] "disk"      "oval"      "light"     "light"     "unknown"   "circle"   
[19645] "triangle"  "triangle"  "cylinder"  "diamond"   "oval"      "oval"     
[19651] "cylinder"  "oval"      "changing"  "light"     NA          "unknown"  
[19657] "light"     "formation" "other"     "unknown"   "formation" "light"    
[19663] "circle"    "unknown"   "cylinder"  "light"     "light"     "light"    
[19669] "circle"    "other"     "light"     "triangle"  "unknown"   "light"    
[19675] "circle"    "sphere"    "light"     "triangle"  "triangle"  "light"    
[19681] "sphere"    "other"     "triangle"  "fireball"  "light"     "fireball" 
[19687] NA          "circle"    "circle"    "triangle"  "triangle"  "formation"
[19693] "circle"    "formation" "circle"    "sphere"    "oval"      "unknown"  
[19699] "circle"    "triangle"  "sphere"    "other"     "circle"    "sphere"   
[19705] "other"     "disk"      "flash"     "light"     "sphere"    "fireball" 
[19711] "fireball"  "cylinder"  "light"     "other"     "circle"    "fireball" 
[19717] "oval"      "unknown"   "cigar"     "circle"    "unknown"   "other"    
[19723] "light"     "light"     "sphere"    "changing"  "fireball"  "fireball" 
[19729] "sphere"    "unknown"   "other"     "cylinder"  "light"     "fireball" 
[19735] "fireball"  "circle"    "triangle"  "chevron"   "unknown"   "fireball" 
[19741] "cigar"     "other"     "light"     "triangle"  "circle"    "light"    
[19747] "changing"  "light"     "formation" "light"     "formation" "sphere"   
[19753] "rectangle" "sphere"    "circle"    "light"     "light"     "light"    
[19759] "light"     "light"     "circle"    "fireball"  "unknown"   "fireball" 
[19765] "light"     "light"     "flash"     "sphere"    "cone"      "disk"     
[19771] "rectangle" "changing"  NA          NA          "light"     "egg"      
[19777] "cylinder"  NA          "light"     "cigar"     "other"     "oval"     
[19783] "light"     "light"     "formation" "light"     "fireball"  "light"    
[19789] "light"     "fireball"  "fireball"  "sphere"    "sphere"    "other"    
[19795] "unknown"   "light"     "triangle"  "fireball"  "triangle"  "disk"     
[19801] "light"     "triangle"  "other"     "unknown"   "fireball"  "oval"     
[19807] "chevron"   "cigar"     "triangle"  "triangle"  "light"     "teardrop" 
[19813] NA          "oval"      "changing"  "fireball"  "other"     "cylinder" 
[19819] "fireball"  "other"     "formation" "disk"      "unknown"   "fireball" 
[19825] "unknown"   "teardrop"  "disk"      "light"     NA          "cone"     
[19831] "disk"      "oval"      "light"     "circle"    "changing"  "other"    
[19837] "oval"      NA          "light"     "unknown"   "other"     "disk"     
[19843] "rectangle" "light"     "light"     "fireball"  "circle"    "other"    
[19849] "circle"    "formation" "flash"     "cigar"     "fireball"  "flash"    
[19855] "unknown"   "fireball"  "light"     NA          "other"     "flash"    
[19861] "light"     "unknown"   "other"     "unknown"   "fireball"  "fireball" 
[19867] "diamond"   "circle"    "light"     "light"     "disk"      "unknown"  
[19873] "sphere"    "changing"  "changing"  "unknown"   "formation" "light"    
[19879] NA          NA          "unknown"   "triangle"  "diamond"   "triangle" 
[19885] "cigar"     "fireball"  "disk"      "circle"    "sphere"    "diamond"  
[19891] "light"     "circle"    "disk"      "light"     "unknown"   "light"    
[19897] "flash"     "circle"    "light"     "light"     "light"     "light"    
[19903] "triangle"  "diamond"   "other"     "triangle"  "disk"      NA         
[19909] "fireball"  "flash"     "disk"      "changing"  "fireball"  "light"    
[19915] "sphere"    "light"     "light"     "light"     "circle"    "teardrop" 
[19921] "circle"    "fireball"  "oval"      "sphere"    "fireball"  "rectangle"
[19927] "fireball"  "light"     "triangle"  "light"     "formation" "light"    
[19933] "sphere"    NA          "light"     "triangle"  "oval"      "egg"      
[19939] "unknown"   "other"     "light"     "circle"    "light"     "circle"   
[19945] "circle"    "light"     "sphere"    "sphere"    "light"     "circle"   
[19951] "triangle"  "triangle"  "triangle"  "fireball"  "triangle"  "disk"     
[19957] "triangle"  "disk"      "circle"    "fireball"  "other"     "circle"   
[19963] "triangle"  "cigar"     "light"     "diamond"   "circle"    "circle"   
[19969] "unknown"   "light"     "fireball"  "circle"    "circle"    "light"    
[19975] "disk"      "light"     "fireball"  "sphere"    "light"     "fireball" 
[19981] "light"     "light"     "triangle"  "fireball"  "diamond"   "fireball" 
[19987] "light"     "sphere"    "fireball"  "fireball"  "light"     "light"    
[19993] "disk"      "unknown"   "circle"    "disk"      "circle"    "other"    
[19999] "other"     NA          "round"     "unknown"   NA          NA         
[20005] NA          "sphere"    "unknown"   "other"     "light"     "formation"
[20011] "fireball"  "fireball"  "formation" "disk"      "flash"     "fireball" 
[20017] "disk"      "other"     "light"     "light"     "teardrop"  "fireball" 
[20023] "oval"      "changing"  "circle"    "light"     "triangle"  "light"    
[20029] "triangle"  "triangle"  "unknown"   "light"     "unknown"   "circle"   
[20035] "light"     "unknown"   "circle"    "circle"    "fireball"  "fireball" 
[20041] "light"     "disk"      "unknown"   "other"     "light"     "light"    
[20047] "light"     "fireball"  "sphere"    "triangle"  "sphere"    "triangle" 
[20053] NA          "triangle"  "sphere"    "circle"    "light"     "circle"   
[20059] "cylinder"  "diamond"   "fireball"  "light"     "formation" "light"    
[20065] "circle"    "light"     "circle"    "light"     "sphere"    "other"    
[20071] "triangle"  "circle"    "disk"      "unknown"   "triangle"  "triangle" 
[20077] "triangle"  "other"     "unknown"   "light"     "sphere"    "sphere"   
[20083] "sphere"    "chevron"   "fireball"  "disk"      "unknown"   "fireball" 
[20089] "light"     "unknown"   "light"     "light"     "unknown"   "light"    
[20095] "cigar"     "cigar"     "disk"      "light"     "triangle"  "rectangle"
[20101] "circle"    "unknown"   "unknown"   "cross"     "light"     "cylinder" 
[20107] "cone"      "light"     "disk"      "light"     "sphere"    "light"    
[20113] "light"     "light"     "circle"    "fireball"  "other"     "sphere"   
[20119] "formation" "formation" "oval"      "fireball"  "disk"      "unknown"  
[20125] "disk"      "cigar"     "sphere"    "triangle"  "disk"      "light"    
[20131] NA          "diamond"   "flash"     "sphere"    "changing"  "light"    
[20137] "circle"    "fireball"  "fireball"  "egg"       "circle"    "fireball" 
[20143] "sphere"    "triangle"  "sphere"    "light"     "other"     "fireball" 
[20149] "cigar"     "circle"    "rectangle" "light"     "flash"     "fireball" 
[20155] "sphere"    "fireball"  "circle"    "light"     "light"     "circle"   
[20161] "unknown"   "sphere"    "circle"    "sphere"    "sphere"    "oval"     
[20167] "circle"    "disk"      "flash"     "other"     "circle"    "disk"     
[20173] "circle"    "disk"      "other"     "diamond"   "cigar"     "diamond"  
[20179] "disk"      "light"     "rectangle" "other"     "light"     "light"    
[20185] "disk"      "triangle"  "triangle"  "changing"  "sphere"    "unknown"  
[20191] "triangle"  "disk"      "fireball"  "unknown"   "triangle"  "sphere"   
[20197] "oval"      "fireball"  "disk"      "disk"      "oval"      "light"    
[20203] "disk"      "oval"      "triangle"  "teardrop"  "light"     "sphere"   
[20209] "formation" "triangle"  "unknown"   "changing"  "fireball"  "changing" 
[20215] "light"     "teardrop"  "other"     "disk"      "disk"      "light"    
[20221] "fireball"  "circle"    "disk"      "circle"    "rectangle" "disk"     
[20227] "unknown"   "circle"    "egg"       "sphere"    "sphere"    "sphere"   
[20233] "egg"       "fireball"  "sphere"    "light"     "changing"  "cigar"    
[20239] "formation" "triangle"  "cross"     "circle"    "circle"    "light"    
[20245] "other"     "disk"      "light"     "unknown"   "sphere"    "light"    
[20251] "triangle"  "diamond"   "fireball"  "light"     "circle"    "light"    
[20257] "light"     "light"     "light"     "disk"      "disk"      "cylinder" 
[20263] "changing"  "sphere"    "disk"      "disk"      "disk"      "triangle" 
[20269] NA          "fireball"  "fireball"  "sphere"    "other"     "triangle" 
[20275] "triangle"  "triangle"  "triangle"  "triangle"  "light"     "triangle" 
[20281] "light"     "light"     "circle"    "cylinder"  "sphere"    "chevron"  
[20287] "triangle"  "light"     "circle"    "light"     "light"     "oval"     
[20293] "disk"      "unknown"   "circle"    "light"     "cone"      "light"    
[20299] "triangle"  "other"     "unknown"   "changing"  "circle"    "light"    
[20305] "circle"    "changing"  "light"     "fireball"  "light"     "fireball" 
[20311] "unknown"   "light"     "light"     "formation" "cigar"     "circle"   
[20317] "triangle"  "sphere"    "rectangle" "circle"    "circle"    "oval"     
[20323] "sphere"    "unknown"   "unknown"   "triangle"  "disk"      "light"    
[20329] "other"     "oval"      "circle"    "light"     "formation" "cigar"    
[20335] "fireball"  "unknown"   "flash"     NA          "other"     "oval"     
[20341] NA          "circle"    "light"     "circle"    "cone"      "unknown"  
[20347] "light"     "unknown"   "unknown"   "oval"      "circle"    "oval"     
[20353] "other"     "cigar"     "triangle"  "light"     "light"     "triangle" 
[20359] "light"     NA          "flash"     "circle"    "oval"      "unknown"  
[20365] "light"     "unknown"   "light"     "disk"      "light"     "circle"   
[20371] "sphere"    "other"     "circle"    "sphere"    "circle"    "light"    
[20377] "triangle"  "light"     "cylinder"  "rectangle" "cone"      "unknown"  
[20383] "unknown"   "oval"      NA          "circle"    "formation" "unknown"  
[20389] "light"     "triangle"  "light"     "formation" "unknown"   "triangle" 
[20395] "unknown"   "light"     "changing"  "light"     "light"     "flash"    
[20401] "light"     "changing"  "circle"    "circle"    "chevron"   "unknown"  
[20407] "triangle"  "cylinder"  "circle"    "light"     "other"     "light"    
[20413] "circle"    "circle"    "changing"  "light"     "light"     "triangle" 
[20419] "unknown"   "light"     "light"     "light"     "diamond"   "sphere"   
[20425] "circle"    "cylinder"  "light"     "unknown"   "light"     "triangle" 
[20431] "light"     "light"     "fireball"  "fireball"  "light"     "formation"
[20437] "fireball"  "rectangle" "chevron"   "sphere"    "circle"    "light"    
[20443] "circle"    "other"     "other"     "light"     "cylinder"  "other"    
[20449] "circle"    "fireball"  "unknown"   "light"     "sphere"    "light"    
[20455] "light"     "other"     "light"     "light"     "cylinder"  "oval"     
[20461] "changing"  "oval"      "triangle"  "disk"      "triangle"  "triangle" 
[20467] "other"     "cigar"     "diamond"   NA          NA          "triangle" 
[20473] "triangle"  "hexagon"   "fireball"  "chevron"   "light"     "teardrop" 
[20479] "fireball"  "fireball"  NA          "disk"      "sphere"    "cylinder" 
[20485] "cylinder"  "light"     "light"     "triangle"  "oval"      "light"    
[20491] "light"     "light"     "cross"     "triangle"  "disk"      "disk"     
[20497] "unknown"   "light"     "circle"    "oval"      "other"     "triangle" 
[20503] "other"     "egg"       "teardrop"  "oval"      "triangle"  "oval"     
[20509] "other"     "disk"      "light"     "light"     "light"     "triangle" 
[20515] "circle"    "formation" "triangle"  "triangle"  "light"     "unknown"  
[20521] "formation" "cigar"     "other"     "light"     "triangle"  "fireball" 
[20527] "triangle"  "rectangle" "egg"       "light"     "sphere"    NA         
[20533] "chevron"   "disk"      "sphere"    "fireball"  "light"     "unknown"  
[20539] "changing"  "sphere"    "fireball"  "unknown"   "changing"  "changing" 
[20545] "circle"    "cone"      "sphere"    "fireball"  "triangle"  "unknown"  
[20551] "unknown"   "sphere"    NA          "cylinder"  "triangle"  "fireball" 
[20557] "sphere"    "light"     "changing"  "disk"      "light"     "disk"     
[20563] "formation" "unknown"   "light"     "disk"      "unknown"   "light"    
[20569] "cigar"     "disk"      "other"     "other"     "light"     "rectangle"
[20575] "disk"      "light"     "light"     "unknown"   "fireball"  "triangle" 
[20581] "fireball"  "other"     "light"     "triangle"  "light"     "unknown"  
[20587] "changing"  "oval"      "disk"      "oval"      "light"     "disk"     
[20593] NA          "disk"      "circle"    "light"     "oval"      "circle"   
[20599] "circle"    "light"     "light"     "light"     "unknown"   "triangle" 
[20605] "fireball"  "egg"       "flash"     "unknown"   "triangle"  "light"    
[20611] "sphere"    "triangle"  "triangle"  "light"     "triangle"  "light"    
[20617] "fireball"  "sphere"    "light"     "oval"      "fireball"  "formation"
[20623] "sphere"    "light"     "fireball"  "sphere"    "triangle"  "oval"     
[20629] "fireball"  "unknown"   "formation" "unknown"   "circle"    "light"    
[20635] "light"     "unknown"   "light"     "disk"      "unknown"   "formation"
[20641] "sphere"    "oval"      "sphere"    "triangle"  "oval"      "oval"     
[20647] "circle"    NA          "egg"       NA          NA          NA         
[20653] NA          NA          NA          NA          NA          NA         
[20659] "sphere"    "triangle"  "light"     "fireball"  "unknown"   "diamond"  
[20665] "light"     "fireball"  "changing"  "oval"      "circle"    "unknown"  
[20671] "fireball"  "light"     "triangle"  "light"     "changing"  NA         
[20677] "other"     "changing"  "other"     "triangle"  "unknown"   "circle"   
[20683] "chevron"   "light"     "triangle"  "light"     "light"     "fireball" 
[20689] "fireball"  "sphere"    "sphere"    "formation" "cigar"     "other"    
[20695] "triangle"  "triangle"  "circle"    "sphere"    "circle"    "light"    
[20701] "triangle"  "diamond"   "egg"       "diamond"   "triangle"  "unknown"  
[20707] "light"     "light"     "rectangle" "fireball"  "unknown"   "circle"   
[20713] "unknown"   "light"     "unknown"   "triangle"  "other"     "formation"
[20719] "triangle"  "light"     "circle"    "triangle"  "fireball"  "disk"     
[20725] "fireball"  "circle"    "light"     "triangle"  "sphere"    "disk"     
[20731] "cigar"     "light"     "triangle"  "triangle"  "triangle"  "triangle" 
[20737] "unknown"   "light"     "flash"     "sphere"    "light"     "triangle" 
[20743] "unknown"   "other"     "circle"    "circle"    "unknown"   "cylinder" 
[20749] "unknown"   "circle"    "cigar"     "disk"      "circle"    "other"    
[20755] "sphere"    "changing"  "light"     "flash"     "egg"       "unknown"  
[20761] "sphere"    "fireball"  NA          "light"     "light"     "light"    
[20767] "light"     "formation" "diamond"   "flash"     "light"     "sphere"   
[20773] "fireball"  "oval"      "light"     "light"     "oval"      "light"    
[20779] "fireball"  "unknown"   "light"     "circle"    "circle"    "fireball" 
[20785] "oval"      "fireball"  "flash"     "other"     "light"     "sphere"   
[20791] "egg"       "triangle"  "unknown"   "teardrop"  "cylinder"  "light"    
[20797] "disk"      "oval"      "other"     "disk"      "formation" "light"    
[20803] "fireball"  "changing"  "fireball"  "fireball"  "disk"      "disk"     
[20809] "oval"      "oval"      "triangle"  "triangle"  NA          "light"    
[20815] NA          "light"     "cigar"     NA          "diamond"   "light"    
[20821] "unknown"   "disk"      "unknown"   "triangle"  "changing"  "circle"   
[20827] "changing"  "light"     "light"     "oval"      "triangle"  "light"    
[20833] "circle"    "formation" "oval"      "light"     "other"     "triangle" 
[20839] "unknown"   "other"     "light"     "cigar"     "fireball"  "disk"     
[20845] "light"     "circle"    "fireball"  "light"     "disk"      "triangle" 
[20851] "rectangle" "rectangle" "oval"      "light"     "disk"      "circle"   
[20857] "circle"    "cone"      "sphere"    "fireball"  "light"     "fireball" 
[20863] "flash"     "flash"     "flash"     "triangle"  "triangle"  "light"    
[20869] "light"     "triangle"  "diamond"   "disk"      NA          "fireball" 
[20875] "flash"     "cylinder"  "cigar"     "changing"  "fireball"  "circle"   
[20881] "light"     "light"     "light"     "triangle"  "other"     "formation"
[20887] "light"     "circle"    "light"     "sphere"    "circle"    "light"    
[20893] "fireball"  "circle"    "formation" "sphere"    "triangle"  "other"    
[20899] "unknown"   "unknown"   "cylinder"  "oval"      "triangle"  "disk"     
[20905] NA          "disk"      "unknown"   "light"     "oval"      "fireball" 
[20911] "light"     "disk"      "light"     "light"     "light"     "oval"     
[20917] "triangle"  "triangle"  "unknown"   "flash"     "formation" "light"    
[20923] "sphere"    "light"     "other"     "unknown"   "fireball"  "light"    
[20929] "triangle"  "sphere"    "triangle"  "cross"     "other"     "circle"   
[20935] "fireball"  "circle"    "disk"      "flash"     "other"     "fireball" 
[20941] "circle"    "triangle"  "light"     "disk"      "light"     "light"    
[20947] "circle"    "light"     "fireball"  "triangle"  "light"     "light"    
[20953] "cigar"     "unknown"   "triangle"  "fireball"  "formation" "formation"
[20959] "cylinder"  "triangle"  "fireball"  "light"     "fireball"  "light"    
[20965] "changing"  "fireball"  "circle"    "light"     "disk"      "formation"
[20971] "oval"      NA          "triangle"  NA          "light"     "light"    
[20977] "fireball"  "light"     "light"     "oval"      "disk"      "circle"   
[20983] "changing"  "rectangle" "oval"      "changing"  "circle"    "oval"     
[20989] "triangle"  "light"     "unknown"   "unknown"   "circle"    "triangle" 
[20995] "other"     "triangle"  "diamond"   "teardrop"  "other"     "chevron"  
[21001] "sphere"    "chevron"   NA          "chevron"   "circle"    "cigar"    
[21007] "changing"  "triangle"  "other"     "circle"    "oval"      "unknown"  
[21013] "other"     "cigar"     "disk"      "fireball"  "light"     "light"    
[21019] "oval"      "chevron"   "fireball"  "other"     "circle"    "oval"     
[21025] "cylinder"  "fireball"  "triangle"  "circle"    "cross"     "diamond"  
[21031] "light"     "triangle"  "fireball"  "light"     "light"     "fireball" 
[21037] "flash"     "disk"      "circle"    "sphere"    "other"     "light"    
[21043] "triangle"  "egg"       "circle"    "formation" "triangle"  "unknown"  
[21049] "cylinder"  "sphere"    "circle"    "light"     "light"     "light"    
[21055] "fireball"  "light"     "changing"  "disk"      "oval"      "oval"     
[21061] "light"     "changing"  NA          "light"     "fireball"  "rectangle"
[21067] "light"     "fireball"  "light"     "fireball"  "circle"    "light"    
[21073] "circle"    "circle"    "fireball"  "other"     "other"     "circle"   
[21079] "rectangle" "circle"    "circle"    "triangle"  "sphere"    "sphere"   
[21085] "unknown"   "unknown"   "light"     "circle"    "other"     "rectangle"
[21091] "circle"    "light"     "sphere"    "cylinder"  "light"     "light"    
[21097] "light"     "flash"     "circle"    "flash"     "light"     "oval"     
[21103] "oval"      "flash"     "circle"    "oval"      "light"     "other"    
[21109] "changing"  NA          NA          NA          "light"     "light"    
[21115] "fireball"  "light"     "other"     "light"     "sphere"    "rectangle"
[21121] "oval"      "unknown"   "diamond"   "oval"      "light"     "fireball" 
[21127] "light"     "light"     "rectangle" "light"     "fireball"  "fireball" 
[21133] "fireball"  "other"     "formation" "other"     NA          "disk"     
[21139] "light"     "triangle"  "fireball"  "light"     "chevron"   NA         
[21145] NA          "chevron"   "chevron"   "light"     "light"     "light"    
[21151] "triangle"  "chevron"   "cone"      "other"     "cigar"     "triangle" 
[21157] "light"     "triangle"  "diamond"   "light"     "light"     "cigar"    
[21163] "triangle"  "flash"     "flash"     "cigar"     "disk"      "oval"     
[21169] "circle"    "triangle"  "triangle"  "light"     "other"     "light"    
[21175] "light"     "egg"       "light"     "light"     "light"     "flash"    
[21181] "circle"    "unknown"   "changing"  "diamond"   "circle"    "cone"     
[21187] "light"     "light"     "fireball"  "circle"    "formation" "disk"     
[21193] "light"     "disk"      "egg"       "triangle"  "sphere"    "light"    
[21199] "light"     "light"     "light"     "formation" "light"     "unknown"  
[21205] "light"     "light"     "circle"    "light"     "cigar"     "light"    
[21211] "fireball"  "other"     "light"     "changing"  "light"     "sphere"   
[21217] "light"     "formation" "disk"      "fireball"  "diamond"   "fireball" 
[21223] "light"     "other"     "light"     "circle"    "other"     "triangle" 
[21229] "cigar"     "other"     "disk"      "egg"       "other"     "light"    
[21235] "fireball"  "flash"     "sphere"    "circle"    "fireball"  "light"    
[21241] "disk"      "triangle"  "light"     "rectangle" "triangle"  "sphere"   
[21247] "sphere"    "changing"  "triangle"  "cross"     "fireball"  "disk"     
[21253] "teardrop"  "other"     "unknown"   "diamond"   "fireball"  "unknown"  
[21259] "triangle"  "sphere"    "circle"    "cigar"     "circle"    "changing" 
[21265] "light"     "rectangle" "unknown"   "changing"  NA          "unknown"  
[21271] "light"     "triangle"  "triangle"  "oval"      "chevron"   "light"    
[21277] "cylinder"  "other"     "circle"    "oval"      "sphere"    "circle"   
[21283] "light"     "other"     "light"     "flash"     "sphere"    "circle"   
[21289] "circle"    NA          "egg"       "unknown"   "light"     "fireball" 
[21295] "light"     "light"     "light"     "light"     "light"     "light"    
[21301] "disk"      "unknown"   "other"     "other"     "unknown"   "triangle" 
[21307] "light"     NA          "disk"      "disk"      "disk"      "circle"   
[21313] "triangle"  "unknown"   "disk"      NA          "diamond"   "cigar"    
[21319] "unknown"   "light"     "changing"  "light"     "disk"      "triangle" 
[21325] "other"     "light"     NA          "unknown"   "other"     "cylinder" 
[21331] "other"     "triangle"  "sphere"    "disk"      "unknown"   "sphere"   
[21337] "triangle"  "light"     "disk"      "fireball"  "triangle"  "circle"   
[21343] "light"     "formation" "fireball"  "light"     NA          "triangle" 
[21349] "chevron"   "circle"    "fireball"  "fireball"  "triangle"  "other"    
[21355] "oval"      "cylinder"  "circle"    "fireball"  "light"     "circle"   
[21361] "disk"      "sphere"    "oval"      "disk"      "sphere"    "cigar"    
[21367] "disk"      "other"     "triangle"  "other"     "circle"    "diamond"  
[21373] "unknown"   NA          "circle"    "egg"       "disk"      "light"    
[21379] "oval"      "unknown"   "circle"    "unknown"   "disk"      NA         
[21385] "unknown"   "fireball"  "light"     "oval"      "unknown"   "chevron"  
[21391] "changing"  "light"     "light"     "light"     "light"     "egg"      
[21397] "unknown"   "disk"      "diamond"   "disk"      "fireball"  "diamond"  
[21403] "fireball"  "triangle"  "unknown"   "oval"      "light"     "unknown"  
[21409] "triangle"  "triangle"  "other"     "fireball"  "fireball"  "unknown"  
[21415] "rectangle" "circle"    "fireball"  "light"     NA          "light"    
[21421] "light"     "disk"      "light"     "unknown"   "cross"     "circle"   
[21427] "circle"    "triangle"  "light"     "other"     "circle"    "disk"     
[21433] "light"     "light"     "light"     NA          "oval"      "changing" 
[21439] "cylinder"  "sphere"    NA          "circle"    "light"     "light"    
[21445] "unknown"   "light"     "light"     "light"     "cigar"     "other"    
[21451] NA          "cone"      "flash"     NA          "light"     NA         
[21457] "triangle"  "light"     "flash"     "light"     "oval"      "other"    
[21463] "oval"      "oval"      "other"     "light"     "light"     "diamond"  
[21469] "light"     "light"     "sphere"    "light"     "fireball"  "triangle" 
[21475] "oval"      "fireball"  NA          "disk"      "light"     "oval"     
[21481] "diamond"   "other"     "fireball"  "triangle"  "formation" "flash"    
[21487] "light"     "sphere"    "light"     "fireball"  "flash"     "light"    
[21493] "cigar"     "light"     "oval"      "sphere"    NA          "light"    
[21499] "disk"      "sphere"    "disk"      NA          "oval"      "sphere"   
[21505] "light"     "disk"      "diamond"   "chevron"   "triangle"  "circle"   
[21511] "sphere"    "unknown"   "circle"    "sphere"    "circle"    "sphere"   
[21517] "light"     "unknown"   "other"     "light"     "fireball"  "other"    
[21523] "sphere"    "light"     "unknown"   "cone"      "oval"      "circle"   
[21529] "light"     "light"     "circle"    "circle"    "unknown"   "oval"     
[21535] "circle"    "changing"  "other"     "changing"  "unknown"   "circle"   
[21541] "circle"    "fireball"  "unknown"   "disk"      "other"     "disk"     
[21547] "light"     "flash"     "circle"    "oval"      "oval"      "cylinder" 
[21553] "cigar"     "unknown"   "other"     "fireball"  "cigar"     "light"    
[21559] "unknown"   "triangle"  "unknown"   "flash"     "fireball"  "unknown"  
[21565] "unknown"   "triangle"  "unknown"   "sphere"    "diamond"   "flash"    
[21571] "triangle"  "sphere"    "other"     "circle"    NA          "triangle" 
[21577] "egg"       "other"     "egg"       "fireball"  "oval"      "sphere"   
[21583] "changing"  "cone"      "oval"      "oval"      NA          "light"    
[21589] "disk"      "formation" "diamond"   "changing"  "fireball"  "sphere"   
[21595] "sphere"    "formation" NA          "fireball"  "other"     "sphere"   
[21601] "changing"  "triangle"  "unknown"   "fireball"  "light"     "changing" 
[21607] "sphere"    "triangle"  "sphere"    "other"     "triangle"  "other"    
[21613] "light"     "fireball"  "fireball"  "unknown"   "cross"     "circle"   
[21619] "cylinder"  "cylinder"  "fireball"  "light"     "fireball"  "fireball" 
[21625] "light"     "light"     "sphere"    "triangle"  "disk"      "flash"    
[21631] "cylinder"  "fireball"  "oval"      "light"     "oval"      "triangle" 
[21637] "light"     "circle"    "rectangle" "light"     "flash"     "sphere"   
[21643] "diamond"   "sphere"    "light"     "rectangle" NA          NA         
[21649] NA          NA          "triangle"  NA          NA          NA         
[21655] "changing"  "disk"      "chevron"   "disk"      "unknown"   "light"    
[21661] "light"     "circle"    "unknown"   "circle"    "cross"     "triangle" 
[21667] "fireball"  "light"     "triangle"  "light"     "fireball"  "triangle" 
[21673] "changing"  "light"     "fireball"  "triangle"  "oval"      "teardrop" 
[21679] "sphere"    "changing"  "other"     "fireball"  "formation" "light"    
[21685] "light"     "disk"      "circle"    "disk"      "light"     "fireball" 
[21691] NA          "cigar"     "disk"      "circle"    "sphere"    "circle"   
[21697] "fireball"  "fireball"  "triangle"  "triangle"  "flash"     "circle"   
[21703] "fireball"  "light"     "fireball"  "sphere"    "fireball"  "changing" 
[21709] "light"     "oval"      "light"     "teardrop"  "circle"    "egg"      
[21715] "other"     "disk"      NA          "circle"    "unknown"   "oval"     
[21721] "unknown"   "cylinder"  "light"     "oval"      "light"     "circle"   
[21727] "unknown"   "light"     "unknown"   "disk"      "triangle"  "circle"   
[21733] "changing"  "unknown"   "light"     "fireball"  "circle"    NA         
[21739] "light"     "unknown"   "circle"    "flash"     "teardrop"  "triangle" 
[21745] "flash"     "triangle"  "other"     "diamond"   "unknown"   "light"    
[21751] "triangle"  "unknown"   "light"     "sphere"    "triangle"  "triangle" 
[21757] "triangle"  "light"     "light"     "other"     "light"     "light"    
[21763] "egg"       "circle"    NA          "rectangle" "formation" "cigar"    
[21769] "circle"    "teardrop"  "light"     "circle"    "light"     "light"    
[21775] "triangle"  "unknown"   "other"     "formation" "light"     "fireball" 
[21781] "sphere"    "cone"      "circle"    "light"     "oval"      "oval"     
[21787] "diamond"   "formation" "light"     "sphere"    "unknown"   "disk"     
[21793] "other"     "triangle"  "circle"    "disk"      "oval"      "oval"     
[21799] "other"     "disk"      "light"     "light"     "fireball"  "formation"
[21805] "light"     "sphere"    "unknown"   "light"     "circle"    "disk"     
[21811] "light"     "unknown"   "disk"      NA          "fireball"  "disk"     
[21817] "changing"  "unknown"   "other"     "diamond"   "unknown"   "circle"   
[21823] "light"     "fireball"  "fireball"  "light"     "unknown"   "triangle" 
[21829] "light"     "triangle"  "circle"    "disk"      "triangle"  "light"    
[21835] "unknown"   "triangle"  "light"     "other"     "fireball"  "unknown"  
[21841] "light"     "disk"      "oval"      "oval"      "fireball"  "formation"
[21847] "light"     "unknown"   "diamond"   "other"     "cigar"     "light"    
[21853] "flash"     "light"     "triangle"  "circle"    "circle"    "light"    
[21859] "other"     "changing"  "triangle"  "flash"     "other"     "disk"     
[21865] "oval"      "disk"      "other"     "light"     "fireball"  "circle"   
[21871] "circle"    "light"     "triangle"  "triangle"  "sphere"    "unknown"  
[21877] "other"     "triangle"  "other"     "changing"  "teardrop"  "light"    
[21883] "fireball"  "circle"    "light"     "rectangle" "light"     "circle"   
[21889] "light"     "fireball"  "triangle"  "cigar"     "diamond"   "unknown"  
[21895] "formation" "fireball"  "light"     "oval"      "disk"      "disk"     
[21901] "chevron"   "disk"      "circle"    "unknown"   "rectangle" "light"    
[21907] "circle"    "fireball"  "other"     NA          "oval"      "formation"
[21913] "triangle"  "fireball"  "formation" "oval"      "circle"    "circle"   
[21919] "circle"    "unknown"   "oval"      "fireball"  "light"     "disk"     
[21925] "circle"    "rectangle" "circle"    "triangle"  "chevron"   "unknown"  
[21931] "fireball"  "light"     "circle"    "circle"    "light"     "circle"   
[21937] "circle"    "sphere"    "changing"  "fireball"  "fireball"  "other"    
[21943] "fireball"  "light"     "flash"     "fireball"  "light"     "oval"     
[21949] NA          "sphere"    "other"     NA          "rectangle" "light"    
[21955] "circle"    "light"     "light"     NA          "circle"    "teardrop" 
[21961] "circle"    "disk"      "light"     "light"     NA          "formation"
[21967] "changing"  "light"     "light"     NA          "other"     "other"    
[21973] "disk"      "oval"      "unknown"   "sphere"    "circle"    "changing" 
[21979] "formation" "disk"      "light"     "diamond"   "formation" "flash"    
[21985] "unknown"   "triangle"  "light"     "other"     "circle"    "circle"   
[21991] "light"     "sphere"    "light"     "sphere"    "cigar"     "oval"     
[21997] "sphere"    "fireball"  "triangle"  "disk"      "light"     "light"    
[22003] "changing"  "chevron"   "circle"    "light"     "sphere"    "other"    
[22009] "other"     "fireball"  "triangle"  "unknown"   NA          "flash"    
[22015] "cigar"     "unknown"   "flash"     "unknown"   "cigar"     "fireball" 
[22021] "changing"  "egg"       "circle"    "unknown"   "triangle"  "circle"   
[22027] "triangle"  "egg"       "fireball"  "triangle"  "light"     "circle"   
[22033] "light"     "changing"  "light"     "light"     "sphere"    "unknown"  
[22039] "triangle"  "light"     "unknown"   "oval"      "oval"      "unknown"  
[22045] "fireball"  "circle"    "triangle"  "triangle"  "light"     "light"    
[22051] "oval"      "light"     "light"     "triangle"  "triangle"  "formation"
[22057] "light"     "light"     "unknown"   "changing"  "sphere"    "disk"     
[22063] "fireball"  NA          "cylinder"  "light"     NA          "cigar"    
[22069] "sphere"    "light"     "other"     "light"     "sphere"    "circle"   
[22075] "unknown"   "light"     "light"     "triangle"  "light"     "cigar"    
[22081] "light"     "triangle"  "fireball"  "circle"    "unknown"   "sphere"   
[22087] "oval"      "unknown"   "fireball"  "unknown"   NA          "circle"   
[22093] "oval"      "triangle"  "oval"      "triangle"  "triangle"  "light"    
[22099] "fireball"  "light"     "light"     "sphere"    "fireball"  "unknown"  
[22105] "oval"      "light"     NA          "light"     "triangle"  "oval"     
[22111] "egg"       "light"     "sphere"    "flash"     "light"     "light"    
[22117] "formation" "formation" "fireball"  "fireball"  "light"     "light"    
[22123] "fireball"  "circle"    "disk"      "oval"      "chevron"   "disk"     
[22129] "disk"      "triangle"  "unknown"   "formation" "disk"      "sphere"   
[22135] "oval"      "sphere"    "oval"      "unknown"   "unknown"   "unknown"  
[22141] "oval"      "other"     NA          "circle"    "chevron"   "other"    
[22147] "sphere"    "egg"       "triangle"  "light"     "oval"      "egg"      
[22153] NA          "cigar"     "light"     "sphere"    NA          "disk"     
[22159] "light"     "formation" "cone"      "sphere"    "circle"    "teardrop" 
[22165] "disk"      "triangle"  "other"     "circle"    "oval"      "other"    
[22171] "light"     "other"     "light"     "unknown"   "triangle"  "light"    
[22177] "unknown"   "light"     "circle"    "light"     NA          "circle"   
[22183] "light"     "circle"    "diamond"   "formation" "light"     "other"    
[22189] "oval"      "sphere"    "unknown"   "light"     "oval"      "fireball" 
[22195] "other"     "sphere"    "disk"      "other"     "circle"    "light"    
[22201] "light"     "triangle"  "changing"  "unknown"   "circle"    "unknown"  
[22207] "changing"  "triangle"  NA          "cylinder"  "other"     "light"    
[22213] "other"     NA          "circle"    "circle"    "circle"    "diamond"  
[22219] "disk"      "circle"    NA          "unknown"   "sphere"    "disk"     
[22225] "light"     "disk"      "cone"      "unknown"   "disk"      "formation"
[22231] "triangle"  "unknown"   "sphere"    "triangle"  NA          "fireball" 
[22237] "light"     "formation" "circle"    "cigar"     "light"     "oval"     
[22243] "other"     "triangle"  "triangle"  "light"     "circle"    "cylinder" 
[22249] "unknown"   "egg"       "triangle"  "disk"      "egg"       "egg"      
[22255] "other"     "egg"       "egg"       "egg"       "formation" "rectangle"
[22261] "light"     "changing"  "light"     "fireball"  "unknown"   "sphere"   
[22267] "fireball"  "light"     "sphere"    "unknown"   "fireball"  "other"    
[22273] "light"     "fireball"  "other"     "other"     "fireball"  "other"    
[22279] "other"     "triangle"  "triangle"  "light"     "light"     "circle"   
[22285] "fireball"  "fireball"  "light"     "disk"      "triangle"  "triangle" 
[22291] "fireball"  "flash"     "fireball"  "other"     "fireball"  "fireball" 
[22297] "triangle"  "light"     "triangle"  "fireball"  "circle"    "light"    
[22303] "light"     "triangle"  "flash"     "light"     "circle"    "flash"    
[22309] "fireball"  "unknown"   "triangle"  "fireball"  "light"     "light"    
[22315] "fireball"  "light"     "cylinder"  "light"     "circle"    "circle"   
[22321] "other"     "cigar"     "light"     "triangle"  "cylinder"  "rectangle"
[22327] "disk"      "disk"      "rectangle" "unknown"   "oval"      "disk"     
[22333] "triangle"  "triangle"  "rectangle" "light"     "triangle"  "unknown"  
[22339] "oval"      "light"     "fireball"  "circle"    "triangle"  "disk"     
[22345] "light"     "light"     "light"     "triangle"  "triangle"  "changing" 
[22351] "fireball"  "triangle"  "light"     "triangle"  "light"     "formation"
[22357] "circle"    "unknown"   "cylinder"  "light"     "oval"      "unknown"  
[22363] "circle"    "triangle"  "cigar"     "circle"    "triangle"  "egg"      
[22369] "unknown"   "triangle"  "circle"    "fireball"  NA          "fireball" 
[22375] NA          "rectangle" "light"     "cigar"     "cigar"     "disk"     
[22381] "triangle"  "light"     "light"     "flash"     "disk"      "light"    
[22387] "other"     "circle"    "oval"      "unknown"   "sphere"    "light"    
[22393] "light"     "circle"    "changing"  "triangle"  "triangle"  "formation"
[22399] "sphere"    "sphere"    "light"     "cigar"     "light"     "oval"     
[22405] "disk"      "other"     "sphere"    "light"     "fireball"  "other"    
[22411] "light"     "cross"     "circle"    "other"     "unknown"   "triangle" 
[22417] "egg"       "fireball"  "sphere"    "disk"      "triangle"  "triangle" 
[22423] "triangle"  "unknown"   "oval"      "disk"      "light"     NA         
[22429] "triangle"  "triangle"  "unknown"   "diamond"   "triangle"  "rectangle"
[22435] "light"     "fireball"  "light"     "formation" "disk"      "light"    
[22441] "formation" "circle"    "unknown"   "triangle"  "unknown"   "light"    
[22447] "changing"  "light"     "unknown"   "unknown"   "circle"    "circle"   
[22453] "fireball"  "cigar"     "circle"    NA          "sphere"    "fireball" 
[22459] "light"     "circle"    "other"     "flash"     "other"     "egg"      
[22465] "formation" "other"     "fireball"  "circle"    "other"     "light"    
[22471] "triangle"  "changing"  NA          "changing"  "cylinder"  "fireball" 
[22477] "triangle"  "circle"    "light"     "light"     "light"     "light"    
[22483] "unknown"   "light"     "fireball"  "sphere"    "oval"      "light"    
[22489] "sphere"    "diamond"   "light"     "sphere"    "other"     "changing" 
[22495] "changing"  "unknown"   "circle"    "circle"    "oval"      "light"    
[22501] "light"     "unknown"   "oval"      "fireball"  "unknown"   "sphere"   
[22507] "triangle"  "other"     "other"     "oval"      "formation" "fireball" 
[22513] "triangle"  "formation" "light"     "changing"  "other"     "circle"   
[22519] "circle"    "light"     "fireball"  "circle"    "circle"    "other"    
[22525] "sphere"    "circle"    "fireball"  "fireball"  "light"     "changing" 
[22531] "other"     "light"     "circle"    "unknown"   "unknown"   "circle"   
[22537] "triangle"  "sphere"    "light"     "fireball"  "fireball"  "triangle" 
[22543] "light"     "fireball"  "circle"    "light"     "light"     "light"    
[22549] "circle"    "other"     "light"     "light"     "circle"    "fireball" 
[22555] "light"     "fireball"  "triangle"  "sphere"    "light"     "fireball" 
[22561] "fireball"  "chevron"   "disk"      "flash"     "circle"    "cylinder" 
[22567] "fireball"  "disk"      "light"     "circle"    "other"     "light"    
[22573] "light"     "fireball"  "changing"  "unknown"   "sphere"    "fireball" 
[22579] "oval"      "circle"    "circle"    "formation" "triangle"  "flash"    
[22585] "cylinder"  "formation" "sphere"    "circle"    "circle"    "formation"
[22591] "sphere"    "sphere"    "light"     "cross"     "sphere"    "light"    
[22597] "cross"     "diamond"   "changing"  "circle"    "light"     "cone"     
[22603] "sphere"    "formation" "fireball"  "triangle"  "circle"    "unknown"  
[22609] "teardrop"  "circle"    "sphere"    "circle"    "cylinder"  "light"    
[22615] "light"     "light"     "unknown"   "other"     "fireball"  "circle"   
[22621] "triangle"  "disk"      "unknown"   NA          "sphere"    "triangle" 
[22627] "disk"      "fireball"  "circle"    "light"     "circle"    "light"    
[22633] "unknown"   "circle"    "light"     "light"     "light"     "light"    
[22639] "disk"      "chevron"   "sphere"    "light"     "circle"    "light"    
[22645] "triangle"  "light"     "other"     "oval"      "triangle"  "cigar"    
[22651] "chevron"   "triangle"  "chevron"   "light"     "changing"  "cross"    
[22657] "egg"       "cigar"     "fireball"  "formation" "fireball"  "changing" 
[22663] "light"     "unknown"   "unknown"   "rectangle" "unknown"   NA         
[22669] "other"     "disk"      "triangle"  "light"     "unknown"   "rectangle"
[22675] "diamond"   "sphere"    "light"     "other"     "cone"      "circle"   
[22681] "unknown"   "light"     "light"     "light"     "light"     "sphere"   
[22687] "other"     "teardrop"  "other"     "triangle"  "fireball"  "light"    
[22693] "other"     "fireball"  NA          "sphere"    "light"     "triangle" 
[22699] "circle"    "triangle"  "formation" "circle"    "unknown"   "light"    
[22705] "unknown"   "changing"  "light"     "triangle"  "fireball"  "changing" 
[22711] "unknown"   "fireball"  "cigar"     "triangle"  "triangle"  "light"    
[22717] "light"     "formation" "light"     "other"     "light"     "disk"     
[22723] "sphere"    "changing"  "light"     "circle"    "oval"      "light"    
[22729] "triangle"  "light"     "disk"      "light"     "circle"    "triangle" 
[22735] "unknown"   "fireball"  "fireball"  "formation" "other"     "fireball" 
[22741] "fireball"  "cigar"     "circle"    "other"     "sphere"    "disk"     
[22747] "light"     "other"     "other"     "circle"    "oval"      "fireball" 
[22753] "light"     "light"     "cylinder"  "unknown"   "oval"      "light"    
[22759] "circle"    "sphere"    "triangle"  "sphere"    "triangle"  "triangle" 
[22765] "unknown"   "unknown"   "unknown"   "sphere"    "light"     "sphere"   
[22771] "light"     "sphere"    "circle"    "fireball"  "light"     "diamond"  
[22777] "light"     "triangle"  "light"     "other"     "other"     "fireball" 
[22783] "unknown"   NA          "sphere"    "light"     "unknown"   "circle"   
[22789] "circle"    "fireball"  "light"     "sphere"    "triangle"  "light"    
[22795] "triangle"  "circle"    "circle"    "fireball"  "triangle"  "fireball" 
[22801] "fireball"  "disk"      "triangle"  "unknown"   "sphere"    "cylinder" 
[22807] "light"     "fireball"  "oval"      "light"     "circle"    "light"    
[22813] "light"     "disk"      "fireball"  "oval"      "formation" "sphere"   
[22819] "sphere"    "cylinder"  "fireball"  "light"     "fireball"  "light"    
[22825] "light"     "oval"      "sphere"    "unknown"   "circle"    "light"    
[22831] "light"     "fireball"  "circle"    "circle"    "sphere"    "light"    
[22837] NA          "light"     "formation" "sphere"    "oval"      "circle"   
[22843] "fireball"  "disk"      "fireball"  "unknown"   "light"     "fireball" 
[22849] "triangle"  "light"     "sphere"    "sphere"    "circle"    "other"    
[22855] "light"     "egg"       "light"     "fireball"  "circle"    "triangle" 
[22861] "fireball"  "triangle"  "triangle"  "light"     "disk"      "light"    
[22867] "light"     "oval"      "light"     "sphere"    "oval"      "triangle" 
[22873] "triangle"  "fireball"  "light"     "fireball"  "fireball"  "fireball" 
[22879] "circle"    "light"     "sphere"    "light"     "light"     "cone"     
[22885] "fireball"  "light"     "cone"      "light"     "cylinder"  "triangle" 
[22891] "circle"    "sphere"    "sphere"    "oval"      "fireball"  "cylinder" 
[22897] NA          "light"     "unknown"   "triangle"  "oval"      "rectangle"
[22903] "light"     "cigar"     "unknown"   "triangle"  "unknown"   "light"    
[22909] "fireball"  NA          "light"     "light"     "light"     "light"    
[22915] "unknown"   "unknown"   "sphere"    "diamond"   "circle"    "triangle" 
[22921] "light"     "fireball"  "fireball"  "fireball"  "oval"      "fireball" 
[22927] "fireball"  "circle"    "oval"      "unknown"   "triangle"  "other"    
[22933] "sphere"    "triangle"  NA          "light"     "other"     "light"    
[22939] "light"     "light"     "unknown"   "formation" "circle"    "changing" 
[22945] "disk"      "cigar"     "light"     "oval"      "light"     "circle"   
[22951] "sphere"    "diamond"   "fireball"  "light"     "light"     "changing" 
[22957] "other"     "disk"      "cylinder"  "formation" "light"     "oval"     
[22963] "light"     "light"     "other"     "oval"      "unknown"   "light"    
[22969] "other"     "light"     "flash"     "rectangle" "changing"  "fireball" 
[22975] "fireball"  "light"     "triangle"  "flash"     "fireball"  "light"    
[22981] "oval"      "flash"     "flash"     "other"     "oval"      "other"    
[22987] "other"     "sphere"    "changing"  "circle"    "fireball"  "formation"
[22993] "formation" "unknown"   NA          NA          "light"     "light"    
[22999] "disk"      "flash"     "egg"       "triangle"  "fireball"  "disk"     
[23005] "other"     "fireball"  "cylinder"  "sphere"    "circle"    "rectangle"
[23011] "light"     "triangle"  "diamond"   "changing"  "fireball"  "oval"     
[23017] "unknown"   "light"     "diamond"   "light"     "light"     "formation"
[23023] "circle"    "formation" "circle"    "triangle"  "triangle"  "light"    
[23029] "circle"    "fireball"  "disk"      "triangle"  "oval"      "other"    
[23035] "other"     "diamond"   "unknown"   "fireball"  "triangle"  "rectangle"
[23041] "triangle"  NA          "circle"    "circle"    "cigar"     "sphere"   
[23047] "other"     "cigar"     "fireball"  "oval"      "light"     "circle"   
[23053] "fireball"  "unknown"   "changing"  "other"     "fireball"  "triangle" 
[23059] "cigar"     "circle"    "circle"    "diamond"   "light"     "unknown"  
[23065] "circle"    "fireball"  "rectangle" "light"     "fireball"  "formation"
[23071] "light"     "triangle"  "other"     NA          "light"     "rectangle"
[23077] "unknown"   "sphere"    "light"     "light"     "other"     "sphere"   
[23083] "diamond"   "light"     "light"     "sphere"    "triangle"  "triangle" 
[23089] "disk"      "light"     "triangle"  "light"     "light"     "light"    
[23095] "other"     "unknown"   "chevron"   "triangle"  "flash"     "triangle" 
[23101] "disk"      "circle"    "triangle"  "fireball"  "fireball"  "fireball" 
[23107] "oval"      "light"     "light"     "sphere"    "unknown"   "unknown"  
[23113] "cone"      "triangle"  "other"     "circle"    "chevron"   "teardrop" 
[23119] "sphere"    "unknown"   "triangle"  "unknown"   NA          "cross"    
[23125] "sphere"    "triangle"  "light"     "circle"    "circle"    "flash"    
[23131] "light"     "diamond"   "unknown"   "egg"       "sphere"    "fireball" 
[23137] "circle"    "triangle"  "unknown"   "disk"      "rectangle" NA         
[23143] "light"     NA          "circle"    "cigar"     "sphere"    "formation"
[23149] "triangle"  "triangle"  "light"     "other"     "cigar"     "diamond"  
[23155] "formation" "other"     "light"     "disk"      "sphere"    "triangle" 
[23161] "rectangle" "rectangle" "light"     "circle"    "disk"      "other"    
[23167] "circle"    "circle"    "sphere"    "triangle"  "fireball"  "other"    
[23173] "triangle"  "circle"    "circle"    "fireball"  "triangle"  "flash"    
[23179] "sphere"    "chevron"   "other"     "light"     "cone"      "flash"    
[23185] "oval"      "unknown"   "triangle"  "diamond"   "fireball"  "light"    
[23191] "light"     "formation" "fireball"  "oval"      "fireball"  "light"    
[23197] "flash"     "unknown"   "light"     "light"     "light"     "sphere"   
[23203] "light"     "oval"      "changing"  "cigar"     "fireball"  "triangle" 
[23209] "fireball"  "other"     "diamond"   "sphere"    "light"     "light"    
[23215] "light"     "light"     "light"     "light"     "light"     "formation"
[23221] "light"     "triangle"  "formation" "unknown"   "light"     "disk"     
[23227] "cigar"     "cigar"     "triangle"  "disk"      "sphere"    NA         
[23233] NA          NA          "light"     "triangle"  NA          "light"    
[23239] "fireball"  "light"     "cone"      "sphere"    "unknown"   "light"    
[23245] "disk"      "fireball"  "disk"      "triangle"  "light"     NA         
[23251] "fireball"  "other"     "disk"      "unknown"   "flash"     "flash"    
[23257] "light"     "other"     "diamond"   "disk"      "fireball"  "disk"     
[23263] "circle"    "cigar"     "disk"      "light"     "triangle"  "disk"     
[23269] "formation" "unknown"   "formation" "unknown"   "triangle"  "fireball" 
[23275] "light"     "light"     "disk"      "triangle"  "other"     "other"    
[23281] "other"     NA          "egg"       "changing"  "triangle"  "light"    
[23287] "unknown"   "triangle"  "fireball"  "unknown"   "light"     "triangle" 
[23293] "circle"    "triangle"  "triangle"  "circle"    "sphere"    "circle"   
[23299] "triangle"  "light"     "light"     "other"     "light"     "light"    
[23305] "light"     "egg"       "formation" "circle"    "light"     "unknown"  
[23311] "formation" "disk"      "circle"    "sphere"    "light"     "circle"   
[23317] "circle"    "diamond"   "sphere"    "light"     "sphere"    "unknown"  
[23323] "formation" "triangle"  "formation" "diamond"   "circle"    "light"    
[23329] "unknown"   "other"     "oval"      "unknown"   "other"     "circle"   
[23335] "triangle"  "oval"      "sphere"    "sphere"    "sphere"    "light"    
[23341] "light"     "light"     "circle"    "triangle"  "disk"      "fireball" 
[23347] "chevron"   "light"     "oval"      "sphere"    "triangle"  "fireball" 
[23353] "light"     "circle"    "light"     "light"     "other"     "cylinder" 
[23359] "diamond"   "cylinder"  "light"     "light"     "fireball"  "circle"   
[23365] "fireball"  "formation" "triangle"  NA          "circle"    "rectangle"
[23371] "circle"    "other"     "circle"    "circle"    "light"     "teardrop" 
[23377] "light"     "light"     "oval"      "light"     "formation" "light"    
[23383] "triangle"  "light"     "sphere"    "light"     "fireball"  "fireball" 
[23389] "oval"      "sphere"    "cylinder"  "sphere"    "circle"    "sphere"   
[23395] "light"     "flash"     "diamond"   "circle"    "formation" "teardrop" 
[23401] "changing"  "light"     "light"     "triangle"  NA          "sphere"   
[23407] "sphere"    "light"     "circle"    "light"     "unknown"   "flash"    
[23413] "formation" "formation" "unknown"   "other"     "triangle"  "circle"   
[23419] "light"     "circle"    "light"     "flash"     NA          "disk"     
[23425] "sphere"    "light"     "delta"     "oval"      "cross"     NA         
[23431] "disk"      "light"     "light"     NA          "unknown"   "chevron"  
[23437] NA          "light"     "other"     "other"     "light"     "triangle" 
[23443] "circle"    "diamond"   "chevron"   "disk"      "disk"      "other"    
[23449] "unknown"   "disk"      "formation" "other"     "disk"      "triangle" 
[23455] "triangle"  "changing"  "other"     "fireball"  "other"     "fireball" 
[23461] "light"     "fireball"  NA          "light"     "fireball"  "light"    
[23467] "circle"    "circle"    "oval"      "fireball"  "unknown"   "sphere"   
[23473] "triangle"  "cross"     "light"     "light"     "circle"    "other"    
[23479] "circle"    "fireball"  "circle"    "oval"      "other"     "circle"   
[23485] "light"     "diamond"   "light"     "light"     "sphere"    "unknown"  
[23491] "triangle"  "circle"    "light"     "disk"      "egg"       "sphere"   
[23497] "fireball"  "triangle"  "circle"    "circle"    "other"     "light"    
[23503] "triangle"  "sphere"    "triangle"  "oval"      "light"     "triangle" 
[23509] "light"     "unknown"   "fireball"  "triangle"  "light"     "oval"     
[23515] "oval"      "triangle"  "unknown"   "unknown"   "other"     "disk"     
[23521] "unknown"   "other"     "triangle"  "light"     "teardrop"  "chevron"  
[23527] "fireball"  "circle"    "triangle"  "diamond"   NA          "light"    
[23533] "light"     "light"     NA          "light"     "unknown"   "fireball" 
[23539] NA          "disk"      "circle"    "fireball"  "oval"      "other"    
[23545] "changing"  "light"     "oval"      "sphere"    "light"     "circle"   
[23551] "diamond"   "triangle"  "circle"    "oval"      "light"     "circle"   
[23557] "fireball"  "cigar"     "triangle"  "triangle"  "light"     "light"    
[23563] "light"     "disk"      "light"     "light"     "unknown"   "fireball" 
[23569] "light"     "sphere"    "light"     "fireball"  "light"     "triangle" 
[23575] "light"     "rectangle" "light"     "formation" "unknown"   "sphere"   
[23581] "light"     "unknown"   "fireball"  "circle"    "fireball"  "light"    
[23587] "other"     "light"     "other"     "rectangle" "light"     "sphere"   
[23593] "fireball"  "circle"    "fireball"  "fireball"  "sphere"    "triangle" 
[23599] "circle"    "circle"    "fireball"  "fireball"  "sphere"    "circle"   
[23605] "other"     "circle"    "fireball"  "circle"    "cylinder"  "fireball" 
[23611] "unknown"   "disk"      "diamond"   NA          "circle"    "light"    
[23617] NA          NA          "fireball"  NA          NA          "circle"   
[23623] "triangle"  "sphere"    NA          "fireball"  "unknown"   "diamond"  
[23629] "sphere"    "formation" "fireball"  "formation" "triangle"  "light"    
[23635] "disk"      "triangle"  "triangle"  "sphere"    "unknown"   "light"    
[23641] "disk"      "changing"  "light"     "oval"      "other"     "light"    
[23647] "unknown"   "light"     "sphere"    "cigar"     "sphere"    "light"    
[23653] "light"     "light"     "light"     "disk"      "light"     "circle"   
[23659] "circle"    "changing"  "circle"    "light"     "circle"    "oval"     
[23665] "rectangle" "light"     "fireball"  "fireball"  "disk"      "light"    
[23671] "fireball"  "light"     "circle"    "unknown"   "light"     "formation"
[23677] "light"     "light"     "other"     "circle"    "unknown"   "light"    
[23683] "fireball"  "unknown"   "other"     "other"     "circle"    "disk"     
[23689] "disk"      "triangle"  "disk"      "cylinder"  "disk"      "disk"     
[23695] "light"     "circle"    "circle"    "sphere"    "light"     "triangle" 
[23701] "triangle"  "other"     "triangle"  "fireball"  "other"     "light"    
[23707] "light"     "circle"    "oval"      "light"     "light"     "oval"     
[23713] "light"     "other"     "triangle"  "triangle"  "triangle"  "other"    
[23719] "formation" "fireball"  "fireball"  "light"     "triangle"  "light"    
[23725] "light"     "sphere"    "cigar"     "circle"    "circle"    "flash"    
[23731] NA          "circle"    "unknown"   "teardrop"  "sphere"    "fireball" 
[23737] "changing"  "formation" "sphere"    "sphere"    "light"     "fireball" 
[23743] "light"     "unknown"   "rectangle" "flash"     "teardrop"  "other"    
[23749] "light"     "fireball"  "circle"    "triangle"  "circle"    "fireball" 
[23755] "formation" "triangle"  "fireball"  "other"     "light"     "disk"     
[23761] "light"     "disk"      "circle"    "circle"    "disk"      "cigar"    
[23767] "triangle"  "formation" "formation" "sphere"    "triangle"  NA         
[23773] "other"     NA          NA          NA          "light"     NA         
[23779] "fireball"  "disk"      "circle"    "cigar"     "triangle"  "triangle" 
[23785] "circle"    "formation" "other"     "cross"     "light"     "light"    
[23791] "disk"      "fireball"  "changing"  "light"     "egg"       "circle"   
[23797] NA          "teardrop"  "other"     "circle"    "fireball"  "unknown"  
[23803] "circle"    "unknown"   "circle"    "sphere"    "circle"    "light"    
[23809] "formation" "other"     "changing"  "light"     "disk"      "fireball" 
[23815] "light"     "flash"     "light"     "disk"      "oval"      "oval"     
[23821] "unknown"   "changing"  "unknown"   "triangle"  "unknown"   "triangle" 
[23827] "disk"      NA          "light"     "oval"      "teardrop"  "circle"   
[23833] "rectangle" "unknown"   "disk"      "light"     "light"     "other"    
[23839] "other"     "disk"      "other"     "other"     "light"     "light"    
[23845] "formation" "light"     "oval"      NA          "light"     "diamond"  
[23851] "flash"     "cigar"     "disk"      "disk"      "triangle"  "disk"     
[23857] "triangle"  "cigar"     "oval"      "disk"      "oval"      "changing" 
[23863] "light"     "cross"     "formation" "formation" "light"     "circle"   
[23869] "cone"      "light"     "triangle"  "disk"      "other"     "fireball" 
[23875] "sphere"    "rectangle" "circle"    "light"     "other"     "sphere"   
[23881] "sphere"    "light"     "sphere"    "fireball"  "circle"    "light"    
[23887] "sphere"    "unknown"   "other"     "fireball"  "egg"       "circle"   
[23893] "light"     "light"     "unknown"   "fireball"  "circle"    "circle"   
[23899] "light"     "oval"      "circle"    "circle"    "diamond"   "circle"   
[23905] "disk"      "other"     "circle"    "sphere"    "rectangle" "light"    
[23911] "light"     "cylinder"  "oval"      "light"     "light"     "other"    
[23917] "sphere"    "light"     "light"     "other"     "other"     "egg"      
[23923] NA          "unknown"   "other"     "light"     "light"     "sphere"   
[23929] "circle"    "circle"    "unknown"   "light"     "triangle"  "disk"     
[23935] "light"     "formation" "fireball"  "unknown"   "light"     "formation"
[23941] "light"     "fireball"  "circle"    "circle"    "egg"       "disk"     
[23947] "cigar"     "circle"    "unknown"   "circle"    "triangle"  "light"    
[23953] "sphere"    "sphere"    "disk"      "circle"    "light"     "formation"
[23959] "light"     "circle"    "unknown"   "circle"    "light"     "light"    
[23965] "disk"      "triangle"  "formation" "triangle"  "light"     "sphere"   
[23971] "light"     "oval"      "circle"    "light"     "flash"     "light"    
[23977] "flash"     "fireball"  "sphere"    "other"     "light"     "light"    
[23983] "fireball"  "circle"    "light"     "fireball"  "cylinder"  "triangle" 
[23989] "light"     "circle"    "circle"    "fireball"  "unknown"   "light"    
[23995] "light"     "fireball"  "circle"    "light"     "sphere"    NA         
[24001] "diamond"   "triangle"  "fireball"  "diamond"   "sphere"    "fireball" 
[24007] "light"     "unknown"   "light"     "circle"    "disk"      "sphere"   
[24013] "sphere"    "circle"    "fireball"  "fireball"  "diamond"   "triangle" 
[24019] "circle"    "sphere"    "unknown"   "circle"    "fireball"  "oval"     
[24025] "oval"      "light"     "light"     "teardrop"  "light"     "light"    
[24031] "light"     "fireball"  "oval"      "fireball"  "light"     "oval"     
[24037] "formation" "teardrop"  "light"     "light"     "oval"      "circle"   
[24043] "oval"      "circle"    "circle"    "oval"      "oval"      "circle"   
[24049] "formation" "light"     "unknown"   "light"     "oval"      "triangle" 
[24055] "circle"    "circle"    "rectangle" "circle"    "triangle"  "changing" 
[24061] "other"     "other"     "unknown"   "light"     "sphere"    "fireball" 
[24067] "fireball"  "circle"    "fireball"  "sphere"    "formation" "light"    
[24073] "other"     "fireball"  "light"     "sphere"    "sphere"    "light"    
[24079] "teardrop"  "light"     "chevron"   "light"     "sphere"    "fireball" 
[24085] "fireball"  "fireball"  "circle"    "oval"      "fireball"  "sphere"   
[24091] "light"     "circle"    "light"     "sphere"    "triangle"  "fireball" 
[24097] "light"     "fireball"  "fireball"  "sphere"    "light"     "light"    
[24103] "sphere"    "formation" "fireball"  "fireball"  "circle"    "fireball" 
[24109] "circle"    "triangle"  "diamond"   "light"     "oval"      "fireball" 
[24115] "triangle"  "fireball"  "fireball"  "oval"      "light"     "fireball" 
[24121] "fireball"  "oval"      "oval"      "flash"     "circle"    "fireball" 
[24127] "sphere"    "fireball"  "light"     NA          "sphere"    "triangle" 
[24133] "light"     "light"     "other"     "triangle"  "unknown"   "light"    
[24139] "light"     "circle"    "unknown"   "fireball"  "chevron"   "sphere"   
[24145] "fireball"  "fireball"  "unknown"   "circle"    "other"     "unknown"  
[24151] "circle"    "sphere"    "disk"      "light"     "other"     "circle"   
[24157] "sphere"    "fireball"  "light"     "light"     "circle"    "circle"   
[24163] "fireball"  "fireball"  "sphere"    "circle"    "circle"    NA         
[24169] "light"     "sphere"    "diamond"   "other"     "light"     "fireball" 
[24175] "fireball"  "formation" "light"     "fireball"  "fireball"  "other"    
[24181] "formation" "formation" "sphere"    "fireball"  "cross"     "light"    
[24187] "light"     "light"     "circle"    "fireball"  "sphere"    "triangle" 
[24193] "sphere"    "fireball"  "sphere"    "light"     "other"     "light"    
[24199] "changing"  "light"     "sphere"    "circle"    "formation" "light"    
[24205] "circle"    "fireball"  "formation" "other"     "light"     "light"    
[24211] "fireball"  "light"     "circle"    "other"     "other"     "sphere"   
[24217] "light"     "disk"      "unknown"   "unknown"   "disk"      "triangle" 
[24223] "chevron"   "cylinder"  NA          "cigar"     "oval"      "triangle" 
[24229] NA          NA          NA          NA          NA          NA         
[24235] NA          "triangle"  "formation" "triangle"  "oval"      "light"    
[24241] "circle"    "triangle"  "triangle"  "sphere"    NA          "disk"     
[24247] "triangle"  NA          "circle"    "fireball"  "oval"      NA         
[24253] "chevron"   "cylinder"  "disk"      NA          "disk"      "sphere"   
[24259] "light"     "disk"      "oval"      "disk"      "other"     "light"    
[24265] "circle"    "formation" "cigar"     "cylinder"  "diamond"   "light"    
[24271] "other"     "light"     "other"     "fireball"  "light"     "sphere"   
[24277] "disk"      "sphere"    "sphere"    "flash"     "light"     "fireball" 
[24283] "disk"      "disk"      "light"     "triangle"  "flash"     "other"    
[24289] "other"     "circle"    "other"     "light"     "light"     "sphere"   
[24295] "triangle"  "chevron"   "triangle"  "light"     "fireball"  "unknown"  
[24301] "oval"      "unknown"   "chevron"   "unknown"   NA          "light"    
[24307] "circle"    "unknown"   "disk"      "light"     "other"     "oval"     
[24313] "sphere"    "unknown"   "unknown"   "flash"     "light"     "triangle" 
[24319] "sphere"    "light"     "changing"  "changing"  "egg"       "sphere"   
[24325] "other"     "formation" "light"     "circle"    "other"     "other"    
[24331] "cigar"     "triangle"  "sphere"    "cigar"     "fireball"  "triangle" 
[24337] "sphere"    "oval"      "triangle"  "light"     "cigar"     "rectangle"
[24343] "triangle"  "formation" "light"     "disk"      "light"     "light"    
[24349] "other"     "disk"      "light"     "light"     "circle"    "triangle" 
[24355] "circle"    "light"     "formation" "light"     "light"     "light"    
[24361] "circle"    "fireball"  "other"     "fireball"  "fireball"  "cylinder" 
[24367] "cigar"     "circle"    "light"     "light"     "light"     "unknown"  
[24373] "oval"      "circle"    "fireball"  NA          "other"     "oval"     
[24379] "light"     "teardrop"  "disk"      "formation" "other"     "triangle" 
[24385] "circle"    "unknown"   "circle"    "light"     "sphere"    "light"    
[24391] "circle"    "unknown"   "light"     "light"     "triangle"  "circle"   
[24397] "light"     "fireball"  "triangle"  "other"     "triangle"  "light"    
[24403] "diamond"   "oval"      "diamond"   "teardrop"  "circle"    "disk"     
[24409] "triangle"  "light"     "sphere"    "triangle"  "other"     NA         
[24415] "circle"    "disk"      "unknown"   "diamond"   "light"     "disk"     
[24421] "circle"    "other"     "other"     "light"     "other"     "disk"     
[24427] "diamond"   "other"     NA          "light"     "triangle"  "sphere"   
[24433] "light"     "triangle"  "triangle"  "triangle"  "light"     "triangle" 
[24439] "formation" "light"     "triangle"  NA          "unknown"   "sphere"   
[24445] "cross"     "diamond"   "oval"      "sphere"    "light"     "changing" 
[24451] "light"     "light"     NA          "circle"    "light"     "light"    
[24457] "light"     "triangle"  "cigar"     "triangle"  "unknown"   "light"    
[24463] "light"     "triangle"  "cigar"     "light"     "light"     "sphere"   
[24469] "oval"      "oval"      "disk"      "light"     "other"     "teardrop" 
[24475] "circle"    "sphere"    "light"     "light"     "circle"    "fireball" 
[24481] "rectangle" "light"     "light"     "disk"      "cone"      "circle"   
[24487] "light"     "light"     "unknown"   "light"     "triangle"  "rectangle"
[24493] "light"     "formation" "fireball"  "light"     "circle"    "light"    
[24499] "triangle"  "triangle"  "light"     "fireball"  "circle"    NA         
[24505] "light"     "other"     "flash"     "sphere"    "light"     "other"    
[24511] "light"     "light"     "cigar"     "teardrop"  "changing"  "oval"     
[24517] "light"     "sphere"    "fireball"  "fireball"  "triangle"  "circle"   
[24523] "circle"    "unknown"   "light"     "unknown"   "rectangle" "sphere"   
[24529] "sphere"    "circle"    "oval"      "cigar"     "light"     "circle"   
[24535] "light"     "fireball"  "fireball"  "fireball"  "light"     "fireball" 
[24541] "fireball"  "changing"  "formation" "fireball"  "light"     "fireball" 
[24547] "teardrop"  "oval"      "light"     "fireball"  "cigar"     "fireball" 
[24553] "sphere"    "light"     "fireball"  "circle"    "light"     "unknown"  
[24559] "circle"    "unknown"   "triangle"  "unknown"   "diamond"   "circle"   
[24565] "disk"      "circle"    "light"     "sphere"    "oval"      "triangle" 
[24571] "flash"     "triangle"  "unknown"   "circle"    "oval"      "oval"     
[24577] "circle"    "light"     "fireball"  "fireball"  "light"     "sphere"   
[24583] "fireball"  "sphere"    "light"     "triangle"  "cigar"     "disk"     
[24589] "disk"      "egg"       "teardrop"  "circle"    "circle"    "triangle" 
[24595] "formation" "disk"      "changing"  "light"     NA          NA         
[24601] NA          NA          "fireball"  "other"     "triangle"  "sphere"   
[24607] "cylinder"  "light"     "unknown"   "diamond"   "light"     "fireball" 
[24613] "changing"  "light"     "light"     "cylinder"  "oval"      "light"    
[24619] "changing"  "teardrop"  "disk"      "triangle"  "unknown"   "triangle" 
[24625] "flash"     "other"     "unknown"   "other"     "egg"       "oval"     
[24631] "light"     "formation" "diamond"   "disk"      NA          "light"    
[24637] "other"     "disk"      "egg"       "flash"     "light"     "triangle" 
[24643] "fireball"  "formation" "circle"    "diamond"   "triangle"  "other"    
[24649] "triangle"  "other"     "unknown"   "disk"      "circle"    "circle"   
[24655] "circle"    "light"     NA          "other"     "unknown"   "triangle" 
[24661] "circle"    "diamond"   "light"     "disk"      "unknown"   "unknown"  
[24667] "cigar"     "other"     "triangle"  "disk"      "light"     "light"    
[24673] "triangle"  "disk"      "triangle"  "cigar"     "unknown"   "triangle" 
[24679] "diamond"   "light"     "unknown"   "oval"      "light"     "oval"     
[24685] "disk"      "light"     "other"     "light"     "light"     "other"    
[24691] "light"     "light"     "circle"    "other"     NA          "light"    
[24697] "fireball"  "light"     "light"     "disk"      "formation" "chevron"  
[24703] "light"     "light"     NA          "light"     NA          "light"    
[24709] "rectangle" "oval"      "disk"      "other"     "unknown"   "light"    
[24715] "triangle"  "circle"    "disk"      "diamond"   "teardrop"  "light"    
[24721] "unknown"   "fireball"  "light"     "unknown"   "fireball"  "unknown"  
[24727] "triangle"  "light"     "cigar"     "cylinder"  "triangle"  "triangle" 
[24733] "unknown"   "triangle"  "disk"      "oval"      "changing"  "unknown"  
[24739] "triangle"  "changing"  "disk"      "light"     "fireball"  "other"    
[24745] "fireball"  "light"     "circle"    "diamond"   "fireball"  "other"    
[24751] "teardrop"  "triangle"  "fireball"  "light"     "unknown"   "light"    
[24757] "triangle"  NA          "formation" "other"     "triangle"  "light"    
[24763] "circle"    "rectangle" "sphere"    "oval"      "oval"      "other"    
[24769] "unknown"   "oval"      "unknown"   "unknown"   "fireball"  "light"    
[24775] "fireball"  "light"     "triangle"  "oval"      "unknown"   "disk"     
[24781] "changing"  "light"     "other"     "disk"      "light"     "teardrop" 
[24787] "disk"      "unknown"   "circle"    "circle"    "light"     "triangle" 
[24793] "light"     "circle"    "circle"    "triangle"  "triangle"  "cylinder" 
[24799] "light"     "oval"      "triangle"  "fireball"  "circle"    "light"    
[24805] "triangle"  "unknown"   "triangle"  "formation" "light"     "light"    
[24811] "light"     "oval"      "disk"      "oval"      "triangle"  "circle"   
[24817] "unknown"   "light"     "disk"      "light"     "circle"    "unknown"  
[24823] "triangle"  "fireball"  "unknown"   "light"     "triangle"  "formation"
[24829] "other"     "other"     "oval"      "light"     "unknown"   "oval"     
[24835] "teardrop"  "other"     "light"     "light"     "rectangle" "unknown"  
[24841] "teardrop"  "other"     "light"     "flash"     "light"     "flash"    
[24847] "light"     "light"     "disk"      "unknown"   "cylinder"  "unknown"  
[24853] "fireball"  "diamond"   "disk"      "sphere"    "sphere"    "other"    
[24859] "light"     "light"     "unknown"   "light"     "fireball"  "fireball" 
[24865] "triangle"  "triangle"  "circle"    "light"     "fireball"  "triangle" 
[24871] "triangle"  "circle"    "light"     "triangle"  "circle"    "diamond"  
[24877] "light"     "sphere"    "oval"      "circle"    "diamond"   "unknown"  
[24883] "flash"     "sphere"    "light"     "sphere"    "sphere"    "fireball" 
[24889] "light"     "circle"    "cigar"     "changing"  "unknown"   "oval"     
[24895] "light"     "flash"     "unknown"   "circle"    "cylinder"  "sphere"   
[24901] "diamond"   "fireball"  "light"     "unknown"   "disk"      "formation"
[24907] "circle"    "circle"    "circle"    "light"     NA          "sphere"   
[24913] "circle"    "circle"    "light"     "other"     "sphere"    "formation"
[24919] "light"     "light"     "light"     "disk"      "light"     "circle"   
[24925] "light"     "light"     "formation" "formation" "formation" "light"    
[24931] "fireball"  "triangle"  NA          "unknown"   "triangle"  "unknown"  
[24937] "sphere"    "other"     "light"     "other"     "fireball"  "unknown"  
[24943] "egg"       "triangle"  "triangle"  "sphere"    "disk"      "unknown"  
[24949] "circle"    NA          NA          "chevron"   "triangle"  "fireball" 
[24955] NA          NA          NA          NA          NA          NA         
[24961] "light"     "fireball"  "oval"      "disk"      "disk"      "triangle" 
[24967] "unknown"   "fireball"  "unknown"   "other"     "light"     "light"    
[24973] "unknown"   "light"     "circle"    "triangle"  "sphere"    "light"    
[24979] "sphere"    "rectangle" "fireball"  "disk"      "fireball"  "circle"   
[24985] "fireball"  "cone"      "fireball"  "circle"    "unknown"   "light"    
[24991] "circle"    "light"     "other"     "light"     "fireball"  "triangle" 
[24997] "other"     "fireball"  "cigar"     "fireball"  "light"     "triangle" 
[25003] "light"     "unknown"   "other"     "cigar"     NA          "light"    
[25009] "circle"    "triangle"  "light"     "disk"      "diamond"   "oval"     
[25015] "sphere"    "light"     "fireball"  "formation" "unknown"   "triangle" 
[25021] "other"     "cigar"     "unknown"   "cylinder"  "triangle"  "sphere"   
[25027] "light"     "triangle"  "triangle"  "other"     "light"     "unknown"  
[25033] "circle"    "egg"       "fireball"  "circle"    "formation" "light"    
[25039] "other"     "oval"      "circle"    "light"     "cylinder"  "light"    
[25045] "light"     "cigar"     "egg"       "light"     "disk"      "light"    
[25051] "changing"  "light"     "unknown"   NA          "other"     "rectangle"
[25057] "chevron"   "light"     "other"     "egg"       "unknown"   "cigar"    
[25063] "rectangle" "chevron"   "other"     "light"     "sphere"    "disk"     
[25069] "diamond"   "unknown"   "triangle"  "light"     "teardrop"  "fireball" 
[25075] "disk"      "light"     "other"     "unknown"   "unknown"   "oval"     
[25081] "cigar"     "cylinder"  "triangle"  "light"     "triangle"  "fireball" 
[25087] "fireball"  "other"     "unknown"   "sphere"    "light"     "light"    
[25093] "fireball"  "circle"    "unknown"   "unknown"   "other"     "light"    
[25099] "disk"      "other"     "disk"      "light"     "light"     "diamond"  
[25105] "oval"      "light"     "triangle"  "light"     "oval"      "other"    
[25111] "changing"  "rectangle" "disk"      "disk"      "fireball"  "light"    
[25117] "light"     "light"     "light"     "light"     "circle"    "flash"    
[25123] "oval"      "flash"     "sphere"    "triangle"  "light"     "light"    
[25129] "light"     "fireball"  "fireball"  "light"     "circle"    "triangle" 
[25135] "fireball"  "cone"      "triangle"  "fireball"  "egg"       "light"    
[25141] "triangle"  "unknown"   "sphere"    "fireball"  NA          "sphere"   
[25147] "triangle"  "fireball"  "other"     "sphere"    "fireball"  "cylinder" 
[25153] "formation" "circle"    "cigar"     "oval"      "chevron"   "triangle" 
[25159] "unknown"   "disk"      "circle"    "light"     "teardrop"  "disk"     
[25165] "light"     "flash"     "triangle"  "circle"    "sphere"    "unknown"  
[25171] "disk"      "light"     "light"     "disk"      "unknown"   "circle"   
[25177] "other"     "circle"    "light"     NA          "oval"      "light"    
[25183] "circle"    "unknown"   "rectangle" "circle"    "other"     "cigar"    
[25189] "triangle"  "unknown"   "unknown"   "oval"      "unknown"   "disk"     
[25195] NA          "other"     "light"     "light"     "light"     "triangle" 
[25201] "other"     "unknown"   "light"     "triangle"  "sphere"    "formation"
[25207] "circle"    "light"     "light"     "triangle"  "disk"      "sphere"   
[25213] "light"     "light"     "formation" "triangle"  "unknown"   "triangle" 
[25219] "unknown"   "oval"      "diamond"   "formation" "light"     "flash"    
[25225] "teardrop"  NA          "fireball"  "light"     "formation" "unknown"  
[25231] "changing"  "unknown"   "fireball"  "other"     "sphere"    "other"    
[25237] "fireball"  "flash"     "light"     "cigar"     "fireball"  "fireball" 
[25243] "light"     "light"     "cigar"     "circle"    "fireball"  "rectangle"
[25249] "circle"    "unknown"   "triangle"  "light"     "light"     "formation"
[25255] "light"     "formation" "unknown"   "light"     "light"     "light"    
[25261] "disk"      "unknown"   "oval"      "light"     "formation" "other"    
[25267] "oval"      NA          "chevron"   "triangle"  "flash"     "fireball" 
[25273] "sphere"    "disk"      "other"     "triangle"  "light"     "triangle" 
[25279] "cylinder"  "formation" "disk"      NA          "light"     "changing" 
[25285] "circle"    "sphere"    "circle"    "formation" "circle"    "circle"   
[25291] "fireball"  "light"     "light"     "other"     NA          "light"    
[25297] "flash"     "diamond"   "triangle"  "triangle"  "diamond"   "light"    
[25303] "changing"  "unknown"   "formation" "light"     "triangle"  "circle"   
[25309] "sphere"    "diamond"   "fireball"  "sphere"    "light"     "other"    
[25315] "other"     "light"     "diamond"   "fireball"  "changing"  "fireball" 
[25321] "sphere"    "circle"    "light"     "other"     "light"     "light"    
[25327] "changing"  "disk"      "light"     "circle"    "cigar"     "triangle" 
[25333] "chevron"   NA          "light"     "unknown"   NA          "cigar"    
[25339] NA          "other"     "light"     "fireball"  "fireball"  "fireball" 
[25345] "circle"    "triangle"  "cylinder"  "sphere"    "light"     "circle"   
[25351] "oval"      "sphere"    "disk"      "fireball"  "fireball"  "unknown"  
[25357] "unknown"   "formation" "other"     "unknown"   "unknown"   "light"    
[25363] "disk"      "unknown"   "triangle"  "cigar"     "light"     "fireball" 
[25369] "light"     "triangle"  "teardrop"  "triangle"  "other"     "diamond"  
[25375] "cone"      "triangle"  "egg"       "diamond"   "light"     "unknown"  
[25381] "circle"    "light"     "disk"      "other"     "oval"      "diamond"  
[25387] NA          NA          "unknown"   "circle"    "changing"  "other"    
[25393] "disk"      "oval"      "circle"    "cylinder"  "changing"  "unknown"  
[25399] "fireball"  "fireball"  "disk"      "unknown"   "fireball"  "sphere"   
[25405] "chevron"   "circle"    "chevron"   "changing"  "circle"    "light"    
[25411] NA          "fireball"  "flash"     "other"     "other"     "unknown"  
[25417] "changing"  "disk"      "other"     "fireball"  "teardrop"  "triangle" 
[25423] "flash"     "unknown"   "unknown"   "changing"  "other"     "triangle" 
[25429] "flash"     "light"     "light"     "light"     "fireball"  "fireball" 
[25435] "light"     "oval"      "triangle"  "light"     "other"     "egg"      
[25441] "unknown"   "formation" "triangle"  "rectangle" "flash"     "sphere"   
[25447] "sphere"    "oval"      "disk"      "triangle"  "triangle"  "sphere"   
[25453] "sphere"    "triangle"  "light"     "rectangle" "triangle"  "triangle" 
[25459] "triangle"  "formation" "light"     "circle"    "disk"      "sphere"   
[25465] "diamond"   "disk"      "light"     "disk"      "oval"      "circle"   
[25471] "other"     "light"     "cigar"     "light"     "triangle"  "light"    
[25477] "light"     "circle"    "rectangle" "disk"      "unknown"   "light"    
[25483] "light"     "circle"    NA          "light"     "other"     "fireball" 
[25489] "cigar"     "sphere"    "oval"      "sphere"    "rectangle" "disk"     
[25495] "circle"    "cylinder"  "fireball"  "triangle"  "fireball"  "oval"     
[25501] "fireball"  "fireball"  "oval"      "fireball"  "fireball"  "light"    
[25507] "rectangle" "unknown"   "light"     "circle"    "formation" "disk"     
[25513] "oval"      "sphere"    "circle"    "triangle"  "light"     "light"    
[25519] "teardrop"  "light"     "disk"      "unknown"   "unknown"   "other"    
[25525] "light"     "triangle"  "fireball"  "formation" "disk"      "light"    
[25531] "light"     "light"     "disk"      "circle"    "triangle"  "triangle" 
[25537] "light"     "light"     "changing"  "light"     "circle"    NA         
[25543] "light"     "unknown"   "cigar"     "other"     "other"     "cigar"    
[25549] "light"     "triangle"  "rectangle" "sphere"    "light"     "light"    
[25555] "circle"    "triangle"  "oval"      "triangle"  "formation" "fireball" 
[25561] "flash"     "triangle"  "oval"      "light"     "formation" "light"    
[25567] "light"     "unknown"   "fireball"  "unknown"   "other"     "unknown"  
[25573] "chevron"   "rectangle" "triangle"  "triangle"  "sphere"    "disk"     
[25579] "chevron"   "other"     "light"     "fireball"  "fireball"  "triangle" 
[25585] "fireball"  "triangle"  "light"     "unknown"   "oval"      "light"    
[25591] "sphere"    "light"     "oval"      "teardrop"  "triangle"  "unknown"  
[25597] "triangle"  "circle"    "rectangle" "fireball"  "changing"  "circle"   
[25603] NA          "triangle"  "circle"    "flash"     "unknown"   "egg"      
[25609] "fireball"  "unknown"   "triangle"  "disk"      "light"     "circle"   
[25615] "light"     "circle"    "circle"    "light"     "triangle"  "changing" 
[25621] "light"     "circle"    "cone"      "unknown"   "sphere"    "other"    
[25627] "changing"  "circle"    "unknown"   NA          "light"     "light"    
[25633] "sphere"    "flash"     "triangle"  "oval"      "fireball"  "circle"   
[25639] "egg"       "sphere"    "fireball"  "triangle"  "disk"      "circle"   
[25645] "triangle"  "fireball"  "disk"      "other"     "light"     "light"    
[25651] "triangle"  "unknown"   "circle"    "fireball"  "sphere"    "oval"     
[25657] "disk"      "light"     "unknown"   "triangle"  "sphere"    "light"    
[25663] "light"     "sphere"    "light"     "light"     "triangle"  "triangle" 
[25669] "light"     "chevron"   "sphere"    "light"     "disk"      "light"    
[25675] "cylinder"  "sphere"    "triangle"  "changing"  "triangle"  "sphere"   
[25681] "light"     "unknown"   "fireball"  "disk"      "light"     "cylinder" 
[25687] "rectangle" "disk"      "light"     "unknown"   "light"     "light"    
[25693] "fireball"  "rectangle" "other"     "other"     "chevron"   "circle"   
[25699] "light"     "light"     "diamond"   NA          "circle"    "other"    
[25705] "unknown"   "formation" "triangle"  "circle"    "triangle"  "cigar"    
[25711] "light"     "teardrop"  "teardrop"  "light"     "triangle"  "other"    
[25717] "changing"  "unknown"   "unknown"   "disk"      "sphere"    "fireball" 
[25723] "light"     "rectangle" "fireball"  "flash"     "unknown"   "flash"    
[25729] "unknown"   "circle"    "disk"      "triangle"  "cigar"     "fireball" 
[25735] "circle"    "light"     "cylinder"  "fireball"  "light"     "light"    
[25741] "unknown"   "formation" "formation" "light"     "diamond"   "unknown"  
[25747] "circle"    "triangle"  "circle"    "other"     "light"     NA         
[25753] "other"     "light"     "other"     "fireball"  "light"     "other"    
[25759] "light"     "oval"      "unknown"   "diamond"   "other"     "light"    
[25765] "unknown"   "unknown"   "triangle"  "oval"      "triangle"  "triangle" 
[25771] "light"     "triangle"  "circle"    "formation" "circle"    "unknown"  
[25777] "other"     "cigar"     "light"     "flash"     "diamond"   "circle"   
[25783] NA          "triangle"  "disk"      "unknown"   "light"     "light"    
[25789] "cigar"     "triangle"  "diamond"   "fireball"  "fireball"  "sphere"   
[25795] "disk"      "cigar"     "other"     "light"     "triangle"  "light"    
[25801] "light"     NA          "sphere"    "light"     "disk"      "circle"   
[25807] "light"     "light"     "circle"    "other"     "other"     "changing" 
[25813] "other"     NA          "other"     "circle"    "changing"  "unknown"  
[25819] "oval"      "disk"      "fireball"  "oval"      "flash"     "light"    
[25825] "unknown"   "light"     "changing"  "changing"  "fireball"  "light"    
[25831] "cigar"     "formation" "circle"    "unknown"   "other"     "formation"
[25837] "cone"      "triangle"  "disk"      "circle"    "formation" "light"    
[25843] "triangle"  "oval"      "disk"      "fireball"  "unknown"   "diamond"  
[25849] "teardrop"  "oval"      "sphere"    "oval"      "flash"     NA         
[25855] "light"     "triangle"  "sphere"    "flash"     "disk"      "fireball" 
[25861] "diamond"   "fireball"  "other"     "unknown"   "triangle"  "triangle" 
[25867] "diamond"   "circle"    "disk"      "triangle"  "unknown"   "other"    
[25873] "light"     "light"     "light"     "light"     "light"     "circle"   
[25879] "light"     "unknown"   "flash"     "fireball"  "unknown"   "fireball" 
[25885] "light"     "fireball"  "disk"      "light"     "fireball"  "light"    
[25891] "unknown"   "diamond"   "other"     "disk"      "unknown"   "fireball" 
[25897] "light"     "formation" "disk"      "cylinder"  "unknown"   "light"    
[25903] "fireball"  "circle"    "oval"      "fireball"  "light"     "unknown"  
[25909] "oval"      "sphere"    "fireball"  "fireball"  "light"     "other"    
[25915] "sphere"    NA          "circle"    "disk"      "disk"      "rectangle"
[25921] "fireball"  "light"     "oval"      "triangle"  "changing"  "fireball" 
[25927] "triangle"  "unknown"   "cylinder"  "oval"      "sphere"    "circle"   
[25933] "circle"    "other"     "sphere"    "fireball"  "unknown"   "circle"   
[25939] "fireball"  "light"     "other"     "light"     "fireball"  "circle"   
[25945] "sphere"    "light"     "triangle"  "formation" "fireball"  "unknown"  
[25951] "light"     "flash"     "light"     "light"     "other"     "light"    
[25957] "circle"    "circle"    "disk"      "diamond"   "light"     "circle"   
[25963] "light"     "circle"    "light"     "light"     "oval"      "diamond"  
[25969] "light"     "changing"  "light"     "fireball"  "fireball"  "circle"   
[25975] "fireball"  "triangle"  "other"     "other"     "disk"      "light"    
[25981] "circle"    "disk"      "cigar"     "oval"      "oval"      "sphere"   
[25987] "changing"  "diamond"   "fireball"  NA          "changing"  "light"    
[25993] "oval"      "cross"     NA          "light"     "light"     "light"    
[25999] "triangle"  "light"     "circle"    "light"     "disk"      "oval"     
[26005] "fireball"  "circle"    "triangle"  "light"     "triangle"  "chevron"  
[26011] "other"     "triangle"  "fireball"  "cylinder"  "triangle"  "sphere"   
[26017] "oval"      "light"     "light"     "light"     "circle"    "sphere"   
[26023] "unknown"   "light"     "unknown"   "other"     "triangle"  "egg"      
[26029] "light"     "cigar"     "light"     "triangle"  "triangle"  "unknown"  
[26035] "light"     "oval"      "flash"     "disk"      "triangle"  "egg"      
[26041] "circle"    "cigar"     "disk"      "triangle"  "other"     "other"    
[26047] "disk"      "cigar"     "cigar"     "unknown"   "circle"    "chevron"  
[26053] "fireball"  "circle"    "disk"      "formation" "other"     "circle"   
[26059] NA          "disk"      "unknown"   "light"     "disk"      "flash"    
[26065] "oval"      "triangle"  "light"     "unknown"   "unknown"   "rectangle"
[26071] "unknown"   "sphere"    "other"     "chevron"   "other"     "light"    
[26077] "oval"      "circle"    "light"     "sphere"    "other"     "unknown"  
[26083] "cylinder"  "light"     "light"     "light"     "oval"      "triangle" 
[26089] "triangle"  "light"     "fireball"  "flash"     "disk"      "other"    
[26095] "chevron"   "formation" "disk"      "fireball"  NA          "changing" 
[26101] "diamond"   "oval"      "other"     "triangle"  "light"     "fireball" 
[26107] "other"     "circle"    "unknown"   "light"     "light"     "changing" 
[26113] "light"     "light"     "other"     "triangle"  "changing"  "light"    
[26119] "triangle"  "formation" "formation" "other"     "oval"      "light"    
[26125] "triangle"  "diamond"   "disk"      "light"     "sphere"    "oval"     
[26131] "other"     "triangle"  "triangle"  "light"     "fireball"  "fireball" 
[26137] "unknown"   "other"     "fireball"  "teardrop"  "cylinder"  "disk"     
[26143] "triangle"  "rectangle" "rectangle" "cylinder"  "other"     "cylinder" 
[26149] "circle"    "chevron"   "light"     "light"     "circle"    "flash"    
[26155] "formation" "unknown"   "circle"    "cigar"     "rectangle" "light"    
[26161] "light"     "light"     "triangle"  "unknown"   "oval"      "other"    
[26167] "light"     "unknown"   "light"     NA          "unknown"   "light"    
[26173] "light"     "light"     "fireball"  "unknown"   "diamond"   "teardrop" 
[26179] "fireball"  "cylinder"  "sphere"    "cigar"     "other"     NA         
[26185] "circle"    "triangle"  "triangle"  "sphere"    "formation" "diamond"  
[26191] "other"     "light"     "light"     NA          "cone"      "other"    
[26197] "cigar"     "disk"      "light"     "light"     "circle"    "rectangle"
[26203] "light"     "light"     "disk"      "triangle"  "triangle"  "triangle" 
[26209] "fireball"  "light"     "light"     "changing"  "disk"      "light"    
[26215] "triangle"  "triangle"  "light"     "sphere"    "circle"    "disk"     
[26221] "triangle"  "circle"    "other"     "sphere"    "light"     "light"    
[26227] "light"     "changing"  "triangle"  "triangle"  "triangle"  "sphere"   
[26233] "circle"    "fireball"  "cross"     "sphere"    "other"     "triangle" 
[26239] "triangle"  "triangle"  "light"     "other"     "unknown"   "unknown"  
[26245] NA          "triangle"  "light"     "fireball"  "oval"      "sphere"   
[26251] "triangle"  "light"     "light"     "unknown"   "teardrop"  "oval"     
[26257] "circle"    "light"     "circle"    "cone"      "egg"       "circle"   
[26263] "light"     "light"     "sphere"    "circle"    "fireball"  "changing" 
[26269] "changing"  "fireball"  "diamond"   "triangle"  "circle"    "fireball" 
[26275] "light"     "disk"      "teardrop"  "other"     "light"     "circle"   
[26281] NA          "triangle"  "light"     "light"     "triangle"  "light"    
[26287] "teardrop"  "circle"    "disk"      "unknown"   "fireball"  "triangle" 
[26293] "light"     "sphere"    "light"     "light"     "circle"    "fireball" 
[26299] "oval"      "oval"      "diamond"   "triangle"  "triangle"  "flash"    
[26305] "light"     "circle"    "light"     "fireball"  "flash"     "circle"   
[26311] "light"     "unknown"   "flash"     "formation" "flash"     "unknown"  
[26317] "other"     "cigar"     "circle"    "circle"    "fireball"  "fireball" 
[26323] "fireball"  "fireball"  "fireball"  "sphere"    "triangle"  "disk"     
[26329] "rectangle" "circle"    "disk"      "disk"      "changing"  "unknown"  
[26335] "other"     NA          "light"     NA          NA          "triangle" 
[26341] "circle"    "light"     "light"     "light"     "circle"    "disk"     
[26347] "light"     "oval"      "light"     "teardrop"  "circle"    "disk"     
[26353] "triangle"  "light"     "fireball"  "disk"      "disk"      "sphere"   
[26359] "fireball"  "fireball"  "disk"      "diamond"   "changing"  "light"    
[26365] "light"     "diamond"   "triangle"  "cross"     "fireball"  "cylinder" 
[26371] "light"     "light"     "triangle"  "triangle"  "chevron"   "unknown"  
[26377] "triangle"  "other"     "unknown"   "triangle"  "triangle"  "diamond"  
[26383] "circle"    "light"     NA          "light"     NA          "formation"
[26389] "changing"  "other"     "diamond"   "disk"      "circle"    "other"    
[26395] "circle"    "disk"      "light"     "light"     "fireball"  "triangle" 
[26401] "triangle"  "light"     "chevron"   "circle"    "triangle"  NA         
[26407] "light"     "disk"      "chevron"   "disk"      "oval"      "egg"      
[26413] "diamond"   "light"     "light"     "triangle"  "light"     NA         
[26419] "other"     "light"     "light"     "disk"      "oval"      NA         
[26425] "other"     "disk"      "triangle"  "triangle"  "light"     "light"    
[26431] "triangle"  "triangle"  "unknown"   "triangle"  "triangle"  "cigar"    
[26437] "unknown"   "other"     "cigar"     "disk"      "triangle"  "rectangle"
[26443] "sphere"    "light"     "oval"      "triangle"  NA          NA         
[26449] "other"     "unknown"   "other"     "oval"      "circle"    "rectangle"
[26455] "light"     "circle"    "cigar"     "sphere"    "fireball"  "disk"     
[26461] "chevron"   "light"     "light"     "fireball"  "triangle"  "triangle" 
[26467] "diamond"   "oval"      "egg"       "circle"    "oval"      "light"    
[26473] "rectangle" "light"     "cylinder"  "unknown"   "light"     "unknown"  
[26479] "light"     "light"     "light"     "fireball"  "sphere"    "light"    
[26485] "light"     "disk"      "light"     "disk"      "formation" "light"    
[26491] "light"     "triangle"  "unknown"   "cone"      "circle"    "cylinder" 
[26497] "flash"     "light"     "light"     "sphere"    "other"     "cross"    
[26503] "formation" "light"     "triangle"  "circle"    "circle"    "unknown"  
[26509] "other"     "triangle"  "unknown"   "circle"    "circle"    "circle"   
[26515] "unknown"   "light"     "triangle"  "light"     "formation" "fireball" 
[26521] "diamond"   "light"     "sphere"    NA          "light"     "triangle" 
[26527] "unknown"   "changing"  "light"     "changing"  "diamond"   "disk"     
[26533] "flash"     "oval"      "oval"      "unknown"   "fireball"  "light"    
[26539] "cigar"     "triangle"  "light"     "teardrop"  "other"     "other"    
[26545] "chevron"   "unknown"   "other"     "light"     "light"     "circle"   
[26551] "disk"      "unknown"   "sphere"    "oval"      "other"     NA         
[26557] "oval"      "triangle"  "fireball"  "circle"    "fireball"  "circle"   
[26563] "circle"    "sphere"    "circle"    "unknown"   "triangle"  "unknown"  
[26569] "light"     "flash"     "light"     "oval"      "other"     "light"    
[26575] "triangle"  "circle"    "light"     "triangle"  "other"     NA         
[26581] "fireball"  "formation" "unknown"   NA          "triangle"  "triangle" 
[26587] "triangle"  "flash"     "diamond"   "fireball"  "unknown"   "fireball" 
[26593] "light"     "unknown"   "oval"      "circle"    "triangle"  "triangle" 
[26599] "sphere"    "cigar"     "circle"    "rectangle" "egg"       "light"    
[26605] "light"     "other"     "triangle"  "other"     "sphere"    "fireball" 
[26611] "light"     "flash"     "changing"  "circle"    "other"     "light"    
[26617] "triangle"  NA          "disk"      "light"     "triangle"  "sphere"   
[26623] "circle"    "disk"      "triangle"  "triangle"  "circle"    "light"    
[26629] "triangle"  "diamond"   "triangle"  "light"     "light"     "disk"     
[26635] "light"     "disk"      "unknown"   "changing"  "light"     "oval"     
[26641] "other"     NA          NA          NA          NA          "light"    
[26647] "light"     "fireball"  "sphere"    "disk"      "formation" "circle"   
[26653] "triangle"  "sphere"    "fireball"  "cylinder"  "triangle"  "light"    
[26659] "light"     "triangle"  "oval"      "unknown"   "circle"    "light"    
[26665] "unknown"   "circle"    "formation" "chevron"   "circle"    "sphere"   
[26671] "light"     "teardrop"  "light"     "chevron"   "light"     "diamond"  
[26677] "changing"  "light"     "sphere"    "light"     "light"     "oval"     
[26683] "triangle"  "sphere"    "light"     "changing"  "chevron"   "disk"     
[26689] "light"     "fireball"  "light"     "unknown"   "cylinder"  "circle"   
[26695] "disk"      NA          "unknown"   "cylinder"  "oval"      "sphere"   
[26701] "other"     "sphere"    "teardrop"  "sphere"    "changing"  "triangle" 
[26707] "flash"     "oval"      "unknown"   "circle"    "sphere"    "other"    
[26713] "triangle"  "oval"      "sphere"    "light"     "disk"      "cylinder" 
[26719] "sphere"    "disk"      "triangle"  "triangle"  "light"     "other"    
[26725] "light"     "cylinder"  "rectangle" "triangle"  "light"     "sphere"   
[26731] "light"     "flash"     "fireball"  "circle"    "light"     "triangle" 
[26737] "formation" "rectangle" "light"     "light"     "light"     "light"    
[26743] "sphere"    "disk"      "triangle"  "fireball"  "unknown"   "circle"   
[26749] "oval"      "changing"  "other"     "sphere"    "circle"    "circle"   
[26755] "triangle"  "disk"      NA          "unknown"   "light"     "circle"   
[26761] "unknown"   "light"     "oval"      "light"     "circle"    "disk"     
[26767] "diamond"   "circle"    "chevron"   "oval"      "other"     "unknown"  
[26773] "sphere"    "circle"    "triangle"  "other"     "triangle"  "disk"     
[26779] "sphere"    "rectangle" "sphere"    NA          NA          NA         
[26785] NA          "light"     "light"     "disk"      "disk"      "fireball" 
[26791] "triangle"  "light"     "circle"    "oval"      "circle"    "formation"
[26797] "formation" NA          "circle"    "disk"      NA          "unknown"  
[26803] "cross"     "light"     "cone"      "light"     "light"     "sphere"   
[26809] "sphere"    "unknown"   "diamond"   "sphere"    "other"     "circle"   
[26815] "formation" "formation" "sphere"    "circle"    "other"     "sphere"   
[26821] "sphere"    "light"     "sphere"    "other"     "egg"       "circle"   
[26827] "light"     "fireball"  "light"     "unknown"   "rectangle" "light"    
[26833] "cigar"     "light"     "other"     "sphere"    "unknown"   "other"    
[26839] "chevron"   "triangle"  "light"     "oval"      NA          "flash"    
[26845] NA          "sphere"    "light"     "light"     "triangle"  "light"    
[26851] "triangle"  "triangle"  "light"     "disk"      "circle"    "cylinder" 
[26857] "light"     "unknown"   "disk"      "oval"      "sphere"    "circle"   
[26863] "sphere"    "other"     "other"     "circle"    "other"     "formation"
[26869] "light"     "light"     "changing"  "other"     "sphere"    "sphere"   
[26875] "changing"  "circle"    "unknown"   "changing"  "sphere"    "other"    
[26881] "unknown"   "light"     "fireball"  "triangle"  "cylinder"  "light"    
[26887] "light"     "triangle"  "egg"       "formation" "triangle"  "unknown"  
[26893] "sphere"    "fireball"  "light"     "circle"    "disk"      "formation"
[26899] "flash"     "circle"    "fireball"  "light"     "unknown"   "unknown"  
[26905] "sphere"    "changing"  "triangle"  "light"     "triangle"  "disk"     
[26911] "flash"     "circle"    "flash"     "light"     "other"     "unknown"  
[26917] "changing"  "fireball"  "unknown"   "sphere"    "triangle"  "light"    
[26923] "fireball"  "light"     "light"     "formation" "fireball"  "light"    
[26929] "circle"    "fireball"  "light"     "triangle"  "cylinder"  "formation"
[26935] "formation" "light"     "triangle"  "oval"      "formation" "fireball" 
[26941] "unknown"   "triangle"  NA          "triangle"  "triangle"  NA         
[26947] NA          NA          NA          NA          "unknown"   "light"    
[26953] "sphere"    "light"     "light"     "other"     NA          "other"    
[26959] "cigar"     "light"     "light"     "unknown"   "sphere"    "other"    
[26965] "other"     "light"     "sphere"    "triangle"  "light"     "sphere"   
[26971] "other"     "light"     "disk"      "unknown"   "unknown"   "light"    
[26977] "sphere"    "circle"    "chevron"   "cylinder"  "light"     "light"    
[26983] "other"     "teardrop"  "disk"      "light"     "chevron"   "other"    
[26989] "circle"    "flash"     "circle"    "disk"      "unknown"   "flash"    
[26995] "circle"    "rectangle" "light"     NA          "light"     "triangle" 
[27001] "triangle"  "unknown"   "other"     "light"     "unknown"   "oval"     
[27007] "fireball"  "unknown"   "disk"      "sphere"    "rectangle" "flash"    
[27013] "sphere"    "fireball"  "unknown"   "light"     "diamond"   "unknown"  
[27019] "light"     "unknown"   "oval"      "circle"    "light"     "light"    
[27025] "light"     "other"     "rectangle" "other"     "circle"    "other"    
[27031] "formation" "disk"      "cone"      "sphere"    "light"     "fireball" 
[27037] "unknown"   "light"     "unknown"   "disk"      "rectangle" "cylinder" 
[27043] "fireball"  "circle"    "unknown"   "other"     "unknown"   "unknown"  
[27049] "unknown"   NA          "light"     "unknown"   "circle"    "light"    
[27055] "diamond"   "oval"      "triangle"  "triangle"  "oval"      "disk"     
[27061] "triangle"  "triangle"  "formation" "oval"      "diamond"   "circle"   
[27067] "cylinder"  "light"     "light"     "formation" "fireball"  "triangle" 
[27073] "circle"    "unknown"   "diamond"   "fireball"  "oval"      "disk"     
[27079] "circle"    "triangle"  "light"     "fireball"  "fireball"  "light"    
[27085] "diamond"   "flash"     "light"     "unknown"   "disk"      "other"    
[27091] "triangle"  "disk"      "light"     "light"     "fireball"  "sphere"   
[27097] "sphere"    "light"     "circle"    "unknown"   "fireball"  "triangle" 
[27103] "rectangle" "oval"      "circle"    "disk"      "sphere"    "circle"   
[27109] "circle"    "light"     "diamond"   "unknown"   "other"     "unknown"  
[27115] "circle"    "fireball"  "light"     "disk"      "oval"      "sphere"   
[27121] "triangle"  "light"     NA          "disk"      "unknown"   "other"    
[27127] "disk"      "triangle"  "light"     "light"     NA          "cylinder" 
[27133] "light"     "disk"      "circle"    "sphere"    "sphere"    "oval"     
[27139] "unknown"   "sphere"    "light"     "light"     "teardrop"  "other"    
[27145] "unknown"   "cigar"     "other"     "light"     "oval"      "circle"   
[27151] "chevron"   "triangle"  "oval"      "disk"      "cigar"     "triangle" 
[27157] "triangle"  "unknown"   "cigar"     "disk"      "circle"    "circle"   
[27163] "triangle"  "changing"  "triangle"  "cylinder"  "oval"      "light"    
[27169] "fireball"  "triangle"  "changing"  "flash"     "cigar"     "light"    
[27175] "light"     "light"     "circle"    "light"     "circle"    "circle"   
[27181] "light"     "oval"      "flash"     "egg"       "sphere"    "circle"   
[27187] "cigar"     "sphere"    "cone"      "light"     "circle"    "fireball" 
[27193] "triangle"  "teardrop"  NA          "egg"       "oval"      "disk"     
[27199] "changing"  "light"     "disk"      "light"     "other"     "light"    
[27205] "oval"      "sphere"    "sphere"    "light"     "fireball"  "light"    
[27211] "circle"    "diamond"   "light"     "diamond"   "triangle"  "light"    
[27217] "oval"      "triangle"  "fireball"  "light"     "oval"      "oval"     
[27223] "oval"      "fireball"  "fireball"  "oval"      "light"     "other"    
[27229] "fireball"  "oval"      NA          "light"     "light"     "fireball" 
[27235] "cylinder"  "other"     "formation" "formation" "oval"      "disk"     
[27241] "changing"  "light"     "circle"    "fireball"  "light"     "triangle" 
[27247] "rectangle" "disk"      "sphere"    "triangle"  "oval"      "triangle" 
[27253] "disk"      "diamond"   "light"     "fireball"  "sphere"    "sphere"   
[27259] "light"     "other"     "circle"    "chevron"   "egg"       "triangle" 
[27265] "sphere"    "triangle"  "light"     "flash"     "changing"  "triangle" 
[27271] "light"     "light"     "unknown"   "light"     "light"     "light"    
[27277] "circle"    "other"     "triangle"  "light"     "other"     "fireball" 
[27283] "disk"      "oval"      "disk"      "fireball"  "other"     "triangle" 
[27289] "sphere"    "triangle"  "unknown"   "oval"      "unknown"   "circle"   
[27295] "unknown"   "unknown"   "light"     "other"     "unknown"   "diamond"  
[27301] "other"     "light"     "cone"      "light"     "circle"    "light"    
[27307] "light"     "circle"    "unknown"   "light"     "disk"      "other"    
[27313] "other"     "disk"      "light"     "fireball"  "light"     "cross"    
[27319] "cone"      "fireball"  "teardrop"  "sphere"    "fireball"  "formation"
[27325] "fireball"  "light"     "oval"      "sphere"    "light"     "light"    
[27331] "circle"    "triangle"  "oval"      "sphere"    "unknown"   "light"    
[27337] "fireball"  "fireball"  "light"     "light"     "other"     "circle"   
[27343] "other"     "oval"      "unknown"   "chevron"   "triangle"  "triangle" 
[27349] "sphere"    "light"     "light"     "fireball"  "disk"      "sphere"   
[27355] "cigar"     "light"     "unknown"   "disk"      "unknown"   "disk"     
[27361] NA          NA          "triangle"  "fireball"  "other"     "other"    
[27367] "triangle"  "oval"      "fireball"  "teardrop"  "circle"    "circle"   
[27373] "disk"      "rectangle" "rectangle" "other"     "changing"  "triangle" 
[27379] "unknown"   "triangle"  "cylinder"  "triangle"  "triangle"  "light"    
[27385] "triangle"  NA          "oval"      "fireball"  "light"     "triangle" 
[27391] "fireball"  "triangle"  "circle"    "fireball"  "sphere"    "teardrop" 
[27397] "cigar"     "unknown"   "unknown"   "light"     "light"     "light"    
[27403] "light"     "circle"    "circle"    "light"     "triangle"  "rectangle"
[27409] "disk"      "disk"      "light"     "light"     "light"     "other"    
[27415] "light"     "light"     "disk"      "triangle"  "light"     "disk"     
[27421] "triangle"  "cigar"     NA          "other"     "light"     "disk"     
[27427] "circle"    "fireball"  "circle"    "flash"     "triangle"  "circle"   
[27433] "triangle"  "oval"      "cigar"     "fireball"  "formation" "triangle" 
[27439] "light"     "disk"      "circle"    "teardrop"  "light"     "triangle" 
[27445] "triangle"  "flash"     "light"     "formation" NA          "light"    
[27451] "cylinder"  "other"     "chevron"   "fireball"  "triangle"  "teardrop" 
[27457] "light"     "light"     "unknown"   "diamond"   "light"     "light"    
[27463] "formation" NA          "chevron"   "triangle"  "circle"    "unknown"  
[27469] "light"     "circle"    "light"     "sphere"    "flash"     "light"    
[27475] "light"     "unknown"   "formation" "circle"    "triangle"  "formation"
[27481] "disk"      "oval"      "unknown"   "unknown"   "cigar"     "triangle" 
[27487] "cigar"     "light"     "diamond"   "light"     "sphere"    "circle"   
[27493] "triangle"  "light"     "light"     "triangle"  "light"     "light"    
[27499] "light"     "egg"       "triangle"  "fireball"  "sphere"    "unknown"  
[27505] "light"     "fireball"  "light"     "light"     "light"     "circle"   
[27511] "circle"    "oval"      "triangle"  "formation" "chevron"   "light"    
[27517] "fireball"  "circle"    "circle"    "circle"    "fireball"  "fireball" 
[27523] "fireball"  "triangle"  "oval"      "oval"      "light"     "oval"     
[27529] "rectangle" "sphere"    "other"     "light"     "light"     NA         
[27535] "disk"      "other"     "egg"       "light"     "light"     "circle"   
[27541] "disk"      "circle"    "egg"       NA          "fireball"  NA         
[27547] "diamond"   "other"     "flash"     "fireball"  "circle"    "unknown"  
[27553] "cigar"     "chevron"   "teardrop"  "fireball"  "sphere"    "formation"
[27559] "diamond"   "light"     "light"     "light"     "other"     "light"    
[27565] "light"     "sphere"    "light"     "light"     "circle"    "triangle" 
[27571] "sphere"    "triangle"  "disk"      "light"     "cigar"     "egg"      
[27577] "light"     "fireball"  "sphere"    "formation" "light"     "triangle" 
[27583] "cigar"     "light"     "fireball"  "sphere"    "disk"      "light"    
[27589] "disk"      "triangle"  "triangle"  "disk"      NA          "other"    
[27595] "light"     "disk"      "changing"  "circle"    "circle"    "other"    
[27601] "sphere"    "fireball"  "unknown"   "oval"      "cylinder"  "circle"   
[27607] "circle"    "cone"      "circle"    "circle"    "sphere"    "sphere"   
[27613] "triangle"  "oval"      "light"     "other"     "light"     "other"    
[27619] "light"     "light"     "triangle"  "teardrop"  "oval"      "light"    
[27625] "light"     "teardrop"  "fireball"  "rectangle" "disk"      "flash"    
[27631] "fireball"  "other"     "cylinder"  "triangle"  "chevron"   "unknown"  
[27637] "triangle"  "fireball"  "fireball"  "fireball"  "triangle"  "fireball" 
[27643] "unknown"   "triangle"  "fireball"  "fireball"  "disk"      "fireball" 
[27649] "fireball"  "circle"    "cigar"     "fireball"  "light"     "oval"     
[27655] "fireball"  "other"     "fireball"  "triangle"  "circle"    "other"    
[27661] "triangle"  "disk"      "light"     "light"     "triangle"  "disk"     
[27667] "circle"    "sphere"    "unknown"   "light"     "flash"     "disk"     
[27673] "light"     "light"     "unknown"   "light"     "rectangle" "sphere"   
[27679] "fireball"  "light"     "unknown"   "rectangle" "light"     "triangle" 
[27685] "cigar"     "formation" "light"     "light"     "circle"    "light"    
[27691] "light"     "circle"    "other"     "fireball"  "unknown"   "triangle" 
[27697] "circle"    "circle"    "light"     "oval"      NA          "triangle" 
[27703] NA          "other"     "unknown"   "disk"      "disk"      "cylinder" 
[27709] "disk"      "sphere"    "formation" "circle"    "triangle"  "light"    
[27715] "light"     "light"     "unknown"   "light"     "formation" "changing" 
[27721] "other"     "disk"      NA          "disk"      "rectangle" NA         
[27727] "triangle"  "other"     "sphere"    "light"     "changing"  "disk"     
[27733] NA          "disk"      NA          "fireball"  NA          NA         
[27739] NA          "triangle"  NA          "light"     "teardrop"  "sphere"   
[27745] "diamond"   "triangle"  "light"     "other"     "diamond"   "diamond"  
[27751] "sphere"    "circle"    "unknown"   "unknown"   "fireball"  "formation"
[27757] "light"     "triangle"  "triangle"  "light"     "light"     "cone"     
[27763] "light"     "other"     "disk"      "other"     "fireball"  "fireball" 
[27769] "light"     "light"     "egg"       "sphere"    "light"     "teardrop" 
[27775] "light"     "light"     "circle"    NA          NA          "circle"   
[27781] "fireball"  "rectangle" "disk"      "triangle"  "cross"     "formation"
[27787] "unknown"   "light"     "light"     "diamond"   "oval"      NA         
[27793] "light"     "sphere"    "teardrop"  "light"     "disk"      "changing" 
[27799] "unknown"   "sphere"    "triangle"  "triangle"  "triangle"  "sphere"   
[27805] "cylinder"  "chevron"   "unknown"   "unknown"   "sphere"    "disk"     
[27811] "other"     "fireball"  "sphere"    "fireball"  "light"     "triangle" 
[27817] "circle"    "cigar"     "unknown"   "cigar"     "triangle"  "sphere"   
[27823] "rectangle" "light"     "circle"    "light"     "unknown"   "other"    
[27829] "fireball"  "circle"    "circle"    "other"     "other"     "teardrop" 
[27835] "circle"    "other"     "circle"    "sphere"    "cigar"     "light"    
[27841] "light"     "light"     "oval"      "cross"     "circle"    "light"    
[27847] "circle"    "triangle"  "flash"     "other"     "disk"      NA         
[27853] "unknown"   "light"     "light"     "egg"       "other"     "disk"     
[27859] NA          "oval"      "light"     "unknown"   "light"     "triangle" 
[27865] "light"     NA          "formation" "light"     "circle"    "light"    
[27871] "fireball"  "light"     "triangle"  "fireball"  "fireball"  "other"    
[27877] "light"     "egg"       "light"     "other"     "fireball"  NA         
[27883] "light"     "sphere"    "light"     "light"     "triangle"  "triangle" 
[27889] "sphere"    "sphere"    "other"     "fireball"  "chevron"   "other"    
[27895] "sphere"    "light"     "sphere"    "formation" NA          "rectangle"
[27901] "formation" NA          "light"     "unknown"   "circle"    "egg"      
[27907] "sphere"    "circle"    "fireball"  "flash"     "disk"      "cigar"    
[27913] "unknown"   "light"     "disk"      NA          "light"     "unknown"  
[27919] "sphere"    "cylinder"  "light"     "sphere"    "fireball"  "light"    
[27925] "formation" "circle"    "disk"      "disk"      "other"     "oval"     
[27931] "triangle"  "triangle"  "formation" NA          NA          "disk"     
[27937] NA          "teardrop"  "disk"      "disk"      "light"     "triangle" 
[27943] "light"     "oval"      "changing"  "fireball"  "oval"      "sphere"   
[27949] NA          "diamond"   NA          "unknown"   "unknown"   "flash"    
[27955] "flash"     "flash"     "light"     "fireball"  "cigar"     "sphere"   
[27961] "formation" "changing"  "light"     NA          "cigar"     "other"    
[27967] "changing"  "light"     "other"     "oval"      "light"     "cigar"    
[27973] "other"     "other"     "other"     "other"     "fireball"  "fireball" 
[27979] "unknown"   "triangle"  "changing"  "light"     NA          "cylinder" 
[27985] "other"     "circle"    "sphere"    "light"     "flash"     "triangle" 
[27991] "unknown"   "light"     "cylinder"  "unknown"   "light"     "cylinder" 
[27997] "light"     "light"     NA          "triangle"  "light"     "disk"     
[28003] "light"     "circle"    "circle"    "light"     "other"     "disk"     
[28009] "unknown"   "triangle"  "rectangle" "sphere"    "oval"      "triangle" 
[28015] "unknown"   "sphere"    "sphere"    "sphere"    "light"     "fireball" 
[28021] "fireball"  "light"     "light"     "circle"    "fireball"  "changing" 
[28027] "oval"      "circle"    "unknown"   "unknown"   "formation" "flash"    
[28033] "teardrop"  "changing"  "circle"    "triangle"  "fireball"  "formation"
[28039] "rectangle" "oval"      "triangle"  "formation" "oval"      "other"    
[28045] "light"     "light"     "triangle"  "fireball"  "unknown"   "triangle" 
[28051] "circle"    "other"     "circle"    "other"     "light"     "light"    
[28057] "light"     "rectangle" "sphere"    "disk"      "unknown"   "light"    
[28063] NA          "chevron"   "unknown"   "light"     "fireball"  "triangle" 
[28069] "oval"      "light"     "cone"      "oval"      "light"     "changing" 
[28075] "formation" "fireball"  "disk"      "circle"    "light"     "cylinder" 
[28081] "light"     NA          "changing"  "fireball"  "triangle"  "light"    
[28087] "circle"    "cone"      "triangle"  "light"     "sphere"    "light"    
[28093] "light"     "fireball"  "other"     "fireball"  "fireball"  "oval"     
[28099] "light"     "formation" "diamond"   "triangle"  "fireball"  "unknown"  
[28105] "triangle"  "disk"      "triangle"  "cigar"     "light"     "fireball" 
[28111] "light"     "fireball"  "triangle"  "unknown"   "triangle"  "fireball" 
[28117] "changing"  "formation" "other"     "light"     "formation" "unknown"  
[28123] "light"     "cigar"     "light"     "formation" "sphere"    "circle"   
[28129] "circle"    "changing"  "circle"    "circle"    "circle"    "disk"     
[28135] "triangle"  NA          NA          NA          NA          "triangle" 
[28141] "light"     "fireball"  "rectangle" "light"     "light"     "triangle" 
[28147] "unknown"   "light"     "light"     "sphere"    "circle"    "fireball" 
[28153] "light"     "light"     "rectangle" "cone"      "sphere"    "cigar"    
[28159] "changing"  "circle"    "unknown"   "circle"    "disk"      "circle"   
[28165] "light"     "cigar"     "oval"      "light"     "teardrop"  "light"    
[28171] "triangle"  "teardrop"  "sphere"    "light"     "fireball"  "light"    
[28177] "cylinder"  "disk"      "cigar"     "light"     "unknown"   "triangle" 
[28183] "formation" "light"     "egg"       "circle"    "triangle"  "formation"
[28189] "formation" "circle"    "fireball"  "cone"      "triangle"  "other"    
[28195] "fireball"  "unknown"   "triangle"  "other"     "other"     "sphere"   
[28201] "circle"    "flash"     "disk"      "triangle"  "unknown"   "unknown"  
[28207] "circle"    "light"     "diamond"   "other"     "cylinder"  "oval"     
[28213] "circle"    "cigar"     "disk"      "light"     "other"     "unknown"  
[28219] "triangle"  "light"     "changing"  NA          "light"     "other"    
[28225] "light"     "unknown"   "formation" "other"     "flash"     "circle"   
[28231] "fireball"  "light"     "oval"      "diamond"   "light"     "light"    
[28237] "disk"      "other"     "disk"      "other"     "fireball"  "light"    
[28243] "light"     "cylinder"  "triangle"  "sphere"    "formation" "light"    
[28249] "light"     "light"     "unknown"   "circle"    "circle"    "flash"    
[28255] "light"     "circle"    "unknown"   "circle"    "oval"      "triangle" 
[28261] "disk"      "unknown"   "triangle"  "fireball"  "light"     "sphere"   
[28267] "sphere"    "disk"      "formation" "chevron"   NA          NA         
[28273] "oval"      "disk"      "unknown"   "disk"      "light"     "light"    
[28279] "unknown"   "circle"    NA          "oval"      "unknown"   "circle"   
[28285] "other"     "unknown"   "other"     "other"     "fireball"  "triangle" 
[28291] "sphere"    "triangle"  "sphere"    "diamond"   NA          "light"    
[28297] "changing"  "sphere"    "formation" "disk"      "disk"      "disk"     
[28303] "rectangle" "triangle"  "disk"      "oval"      "fireball"  "oval"     
[28309] "triangle"  "circle"    NA          NA          NA          NA         
[28315] "other"     "fireball"  "triangle"  "light"     "other"     "cylinder" 
[28321] "sphere"    "unknown"   "oval"      "light"     "light"     "unknown"  
[28327] "light"     "sphere"    "cigar"     "sphere"    "fireball"  "circle"   
[28333] "triangle"  "other"     "fireball"  "triangle"  "circle"    "fireball" 
[28339] "triangle"  "changing"  "rectangle" "oval"      "triangle"  "disk"     
[28345] "light"     "formation" NA          "formation" "circle"    "fireball" 
[28351] "sphere"    "disk"      NA          "other"     "disk"      "fireball" 
[28357] "circle"    "unknown"   "light"     "sphere"    "cylinder"  "circle"   
[28363] "fireball"  "other"     "other"     "sphere"    "light"     "chevron"  
[28369] "circle"    "disk"      "teardrop"  "disk"      "cigar"     "oval"     
[28375] "cigar"     "light"     "changing"  "fireball"  "circle"    "light"    
[28381] "other"     "other"     "egg"       "sphere"    "circle"    "circle"   
[28387] "sphere"    "unknown"   "cylinder"  "formation" "light"     "formation"
[28393] "formation" "circle"    "light"     "light"     "sphere"    "disk"     
[28399] "disk"      "teardrop"  "triangle"  "triangle"  "light"     "light"    
[28405] "egg"       "cigar"     "circle"    "oval"      "formation" "unknown"  
[28411] "unknown"   "disk"      "circle"    "cigar"     "changing"  "egg"      
[28417] "light"     "triangle"  "fireball"  "other"     "triangle"  "circle"   
[28423] "circle"    "fireball"  "oval"      "circle"    "other"     "flash"    
[28429] "light"     "unknown"   "triangle"  "egg"       "circle"    "oval"     
[28435] "light"     "triangle"  "sphere"    "unknown"   "light"     "formation"
[28441] "sphere"    "cylinder"  "other"     "unknown"   "triangle"  "triangle" 
[28447] "triangle"  "diamond"   "light"     "light"     "cone"      "light"    
[28453] "oval"      "light"     "triangle"  "sphere"    "light"     "circle"   
[28459] NA          "triangle"  "sphere"    "oval"      "fireball"  "rectangle"
[28465] "flash"     "other"     "cigar"     "diamond"   "triangle"  "triangle" 
[28471] "fireball"  "unknown"   "other"     "light"     "fireball"  "sphere"   
[28477] "oval"      "unknown"   "disk"      "disk"      "circle"    "other"    
[28483] "other"     "circle"    NA          "cigar"     "other"     "teardrop" 
[28489] "unknown"   "fireball"  "fireball"  "triangle"  "circle"    "other"    
[28495] "unknown"   "light"     "formation" "fireball"  "other"     "fireball" 
[28501] "unknown"   "triangle"  "oval"      "light"     "oval"      "light"    
[28507] "sphere"    "formation" "diamond"   NA          "other"     "unknown"  
[28513] "disk"      NA          "fireball"  "cylinder"  "other"     "other"    
[28519] "egg"       "other"     "light"     "rectangle" "fireball"  "triangle" 
[28525] "fireball"  "circle"    "formation" "light"     "disk"      "cigar"    
[28531] "light"     "circle"    "cigar"     NA          "egg"       "oval"     
[28537] "light"     "fireball"  "unknown"   "oval"      "light"     "other"    
[28543] "fireball"  "other"     "light"     "sphere"    "sphere"    "flash"    
[28549] "triangle"  "sphere"    "triangle"  "formation" "triangle"  "sphere"   
[28555] "light"     "unknown"   "formation" "other"     "fireball"  "circle"   
[28561] "light"     "flash"     "light"     "light"     "light"     "unknown"  
[28567] "unknown"   "chevron"   "light"     "oval"      "changing"  "unknown"  
[28573] "unknown"   "sphere"    "unknown"   "light"     "unknown"   "light"    
[28579] "sphere"    "light"     "circle"    "triangle"  "sphere"    "cigar"    
[28585] "light"     "cylinder"  "triangle"  "oval"      "other"     "light"    
[28591] "light"     "unknown"   "changing"  "light"     "triangle"  "light"    
[28597] "triangle"  "other"     "unknown"   NA          "sphere"    "sphere"   
[28603] "circle"    "sphere"    "light"     "light"     "circle"    "light"    
[28609] "changing"  "sphere"    "triangle"  "circle"    "triangle"  "light"    
[28615] "light"     "unknown"   "circle"    "light"     "light"     "circle"   
[28621] "other"     "formation" "circle"    "light"     "triangle"  "unknown"  
[28627] "other"     "unknown"   "circle"    "changing"  "triangle"  "other"    
[28633] "sphere"    "cigar"     "chevron"   "triangle"  "unknown"   "sphere"   
[28639] "sphere"    "light"     "cylinder"  "disk"      "triangle"  "sphere"   
[28645] "sphere"    "unknown"   "cigar"     "cigar"     "circle"    "oval"     
[28651] "disk"      "disk"      "circle"    "light"     "light"     "sphere"   
[28657] "circle"    "rectangle" "flash"     "sphere"    "triangle"  NA         
[28663] "circle"    "circle"    "circle"    "unknown"   "unknown"   "light"    
[28669] "other"     "oval"      "unknown"   "light"     "light"     "fireball" 
[28675] "flash"     "light"     "light"     "triangle"  NA          "triangle" 
[28681] NA          "triangle"  NA          NA          "light"     "circle"   
[28687] NA          "triangle"  "other"     "rectangle" "light"     "cone"     
[28693] "unknown"   "sphere"    "other"     "chevron"   "triangle"  "chevron"  
[28699] "flash"     "disk"      "triangle"  "flash"     "unknown"   "triangle" 
[28705] "triangle"  "chevron"   "other"     "other"     "circle"    "unknown"  
[28711] "triangle"  "circle"    "disk"      "diamond"   "formation" "fireball" 
[28717] "cigar"     "triangle"  "light"     "light"     "oval"      NA         
[28723] "fireball"  "light"     "fireball"  "circle"    "light"     "fireball" 
[28729] NA          NA          "formation" NA          "sphere"    "sphere"   
[28735] NA          "oval"      "other"     "fireball"  "fireball"  "sphere"   
[28741] "changing"  "disk"      "disk"      NA          "circle"    "unknown"  
[28747] "chevron"   "triangle"  "flash"     "unknown"   "disk"      "light"    
[28753] "disk"      "other"     "sphere"    "light"     "circle"    "formation"
[28759] "formation" "light"     "sphere"    "formation" "formation" "oval"     
[28765] "triangle"  "triangle"  "light"     "light"     "triangle"  "light"    
[28771] "unknown"   "egg"       "fireball"  "formation" "light"     "flash"    
[28777] "triangle"  NA          "cigar"     "circle"    "triangle"  "fireball" 
[28783] "triangle"  "fireball"  "triangle"  "oval"      "oval"      "triangle" 
[28789] "cigar"     "teardrop"  "formation" "other"     "light"     "rectangle"
[28795] "triangle"  "light"     "unknown"   "fireball"  "light"     "changing" 
[28801] "triangle"  "unknown"   "other"     "egg"       "cylinder"  "other"    
[28807] "oval"      "cigar"     "sphere"    "light"     "sphere"    "teardrop" 
[28813] "unknown"   "changing"  "circle"    "teardrop"  "rectangle" "sphere"   
[28819] "oval"      "flash"     "light"     "circle"    "light"     "sphere"   
[28825] "other"     "oval"      "other"     "formation" "light"     "oval"     
[28831] "changing"  "circle"    "light"     "rectangle" "triangle"  "unknown"  
[28837] "disk"      "cylinder"  "sphere"    "circle"    "unknown"   "changing" 
[28843] "circle"    "teardrop"  "circle"    "fireball"  "fireball"  "fireball" 
[28849] "circle"    "sphere"    "light"     "light"     "triangle"  NA         
[28855] "fireball"  "formation" "unknown"   "circle"    "unknown"   "fireball" 
[28861] "unknown"   "other"     "disk"      "unknown"   "triangle"  "fireball" 
[28867] "light"     "circle"    "cone"      NA          "circle"    "light"    
[28873] "triangle"  "triangle"  "formation" "other"     "fireball"  "circle"   
[28879] "fireball"  "fireball"  "sphere"    "other"     "sphere"    "light"    
[28885] "light"     "circle"    "light"     "fireball"  "light"     "fireball" 
[28891] "unknown"   "circle"    "light"     "light"     "light"     "circle"   
[28897] "formation" "cigar"     "cigar"     "triangle"  "triangle"  "formation"
[28903] "other"     NA          NA          NA          NA          "triangle" 
[28909] "triangle"  "cigar"     "light"     "oval"      "changing"  "sphere"   
[28915] "fireball"  "sphere"    "cylinder"  "sphere"    "oval"      "disk"     
[28921] "circle"    "fireball"  "fireball"  "sphere"    "triangle"  "unknown"  
[28927] "egg"       "disk"      "triangle"  "light"     "disk"      "unknown"  
[28933] "light"     "disk"      "other"     "circle"    "fireball"  "light"    
[28939] "light"     "disk"      "light"     "light"     "light"     "oval"     
[28945] "light"     "disk"      "triangle"  "other"     "cylinder"  "light"    
[28951] "triangle"  "light"     "oval"      "fireball"  "light"     "cigar"    
[28957] "unknown"   "triangle"  "changing"  "circle"    "light"     "light"    
[28963] "light"     "circle"    "formation" "rectangle" "light"     "sphere"   
[28969] "circle"    "light"     "circle"    "cigar"     "rectangle" "changing" 
[28975] "sphere"    "light"     NA          "unknown"   "light"     NA         
[28981] "egg"       "light"     "unknown"   "cigar"     "sphere"    "disk"     
[28987] "sphere"    "unknown"   "light"     "sphere"    "circle"    "circle"   
[28993] "disk"      "light"     "cigar"     "fireball"  "triangle"  "egg"      
[28999] "light"     "unknown"   "cylinder"  "light"     "light"     "chevron"  
[29005] "disk"      "chevron"   "light"     "triangle"  "formation" "other"    
[29011] NA          "circle"    "oval"      "triangle"  "diamond"   "circle"   
[29017] "other"     "egg"       "disk"      "fireball"  "fireball"  "cigar"    
[29023] "light"     "oval"      "light"     "oval"      NA          "triangle" 
[29029] "light"     "oval"      "cigar"     "triangle"  "fireball"  "triangle" 
[29035] "light"     "light"     "cigar"     "fireball"  "light"     "formation"
[29041] "flash"     "formation" "formation" "unknown"   "cross"     "light"    
[29047] "light"     "sphere"    "egg"       "formation" NA          "flash"    
[29053] "flash"     "light"     "circle"    "sphere"    "fireball"  "disk"     
[29059] "unknown"   "light"     "light"     "light"     "light"     "light"    
[29065] "unknown"   "light"     "diamond"   "fireball"  "oval"      "triangle" 
[29071] "egg"       NA          "unknown"   "light"     "diamond"   "triangle" 
[29077] "formation" "triangle"  "circle"    "other"     "other"     "fireball" 
[29083] "disk"      "unknown"   "oval"      "light"     NA          NA         
[29089] "teardrop"  "light"     "cigar"     "unknown"   "light"     "circle"   
[29095] "light"     "unknown"   "light"     "light"     "light"     "circle"   
[29101] "oval"      "other"     "light"     "oval"      "sphere"    "disk"     
[29107] "rectangle" "disk"      "fireball"  "triangle"  "oval"      "fireball" 
[29113] "light"     "fireball"  "light"     "light"     "chevron"   "triangle" 
[29119] "other"     "changing"  "unknown"   "light"     "sphere"    "light"    
[29125] "oval"      "other"     "light"     "fireball"  "light"     "sphere"   
[29131] "light"     "formation" "circle"    "triangle"  "other"     "unknown"  
[29137] "unknown"   "disk"      "circle"    "disk"      "other"     "unknown"  
[29143] "triangle"  "unknown"   "oval"      "light"     "other"     "sphere"   
[29149] "light"     "other"     "light"     "circle"    "circle"    "other"    
[29155] "disk"      "light"     "light"     "triangle"  "flash"     "light"    
[29161] "triangle"  "light"     "light"     "other"     "oval"      "disk"     
[29167] "cigar"     "light"     "other"     "light"     "light"     "oval"     
[29173] "fireball"  "other"     "triangle"  "circle"    "other"     "light"    
[29179] "oval"      "circle"    "other"     "triangle"  "cross"     "unknown"  
[29185] "disk"      "sphere"    "sphere"    "light"     "light"     "triangle" 
[29191] "light"     "fireball"  "light"     "circle"    "triangle"  "formation"
[29197] "formation" "sphere"    "fireball"  "fireball"  "light"     "egg"      
[29203] "unknown"   "triangle"  "triangle"  "teardrop"  "light"     "fireball" 
[29209] "light"     "changing"  NA          "fireball"  "sphere"    "formation"
[29215] "circle"    "changing"  "sphere"    "triangle"  "unknown"   "rectangle"
[29221] "light"     "circle"    "sphere"    "light"     "sphere"    "light"    
[29227] "sphere"    "other"     "light"     "light"     "light"     "changing" 
[29233] "other"     "circle"    "oval"      "cylinder"  "sphere"    "oval"     
[29239] "fireball"  "light"     "light"     "light"     "light"     "light"    
[29245] "light"     "light"     "circle"    "oval"      "fireball"  "rectangle"
[29251] "disk"      "oval"      "teardrop"  "triangle"  "rectangle" "cigar"    
[29257] "unknown"   "changing"  "triangle"  "fireball"  NA          "circle"   
[29263] "changing"  "circle"    "formation" "chevron"   "circle"    "chevron"  
[29269] "disk"      "oval"      "triangle"  "unknown"   "light"     "sphere"   
[29275] "light"     "disk"      "sphere"    "circle"    "diamond"   "light"    
[29281] "sphere"    "light"     "oval"      "changing"  "diamond"   "other"    
[29287] "other"     "disk"      "light"     "triangle"  "light"     "cylinder" 
[29293] "light"     "unknown"   "flash"     "light"     "light"     "light"    
[29299] "sphere"    "circle"    "sphere"    "disk"      "light"     "oval"     
[29305] "disk"      "disk"      "egg"       NA          "disk"      "egg"      
[29311] "light"     "cigar"     "fireball"  "oval"      "diamond"   "unknown"  
[29317] "flash"     "light"     "circle"    "light"     "sphere"    "fireball" 
[29323] "disk"      "fireball"  "circle"    "oval"      "circle"    "oval"     
[29329] "formation" "other"     "unknown"   "light"     "circle"    "light"    
[29335] "triangle"  "fireball"  "triangle"  "triangle"  "light"     "unknown"  
[29341] "triangle"  "circle"    "other"     "sphere"    "cylinder"  "light"    
[29347] "light"     "disk"      "changing"  "unknown"   "teardrop"  "triangle" 
[29353] "sphere"    "other"     "light"     "light"     NA          "rectangle"
[29359] "other"     "triangle"  NA          "light"     "disk"      "light"    
[29365] "light"     "disk"      "other"     "fireball"  "sphere"    "changing" 
[29371] NA          "light"     "cigar"     "disk"      "disk"      "light"    
[29377] "light"     "light"     "other"     "light"     "diamond"   "sphere"   
[29383] "cigar"     "light"     "circle"    "oval"      "disk"      "circle"   
[29389] "changing"  "light"     "circle"    "circle"    "light"     NA         
[29395] "triangle"  "oval"      "fireball"  "fireball"  "light"     "sphere"   
[29401] "light"     "changing"  "light"     "circle"    "oval"      "unknown"  
[29407] "fireball"  "circle"    "circle"    "formation" "flash"     "circle"   
[29413] "circle"    "other"     "fireball"  "teardrop"  "circle"    "light"    
[29419] "light"     "teardrop"  "other"     "sphere"    "unknown"   "fireball" 
[29425] "unknown"   "light"     "changing"  "unknown"   "oval"      "light"    
[29431] "other"     "fireball"  "sphere"    "circle"    "light"     "sphere"   
[29437] "chevron"   "fireball"  "light"     "sphere"    "changing"  NA         
[29443] "unknown"   "light"     "light"     "formation" "light"     "formation"
[29449] "circle"    "cigar"     "light"     "triangle"  "disk"      "circle"   
[29455] "sphere"    "oval"      "light"     "fireball"  "other"     "sphere"   
[29461] "light"     "circle"    "sphere"    "circle"    "unknown"   "unknown"  
[29467] "light"     "cigar"     "sphere"    "unknown"   "unknown"   "fireball" 
[29473] "fireball"  "fireball"  "light"     "circle"    "fireball"  "oval"     
[29479] "disk"      "disk"      "disk"      "light"     "fireball"  "cigar"    
[29485] "oval"      "light"     "light"     "sphere"    "disk"      NA         
[29491] "disk"      "circle"    "changing"  "unknown"   "flash"     "unknown"  
[29497] "chevron"   "sphere"    "other"     "light"     "circle"    "cigar"    
[29503] "unknown"   "disk"      "circle"    "other"     "cylinder"  "egg"      
[29509] "oval"      "disk"      "disk"      "sphere"    "fireball"  "disk"     
[29515] "triangle"  "oval"      "other"     "other"     "other"     "other"    
[29521] "other"     "triangle"  "chevron"   "formation" "formation" "sphere"   
[29527] "other"     "circle"    "disk"      "triangle"  "triangle"  "light"    
[29533] "sphere"    "sphere"    "disk"      "triangle"  NA          "disk"     
[29539] NA          "cigar"     "sphere"    "light"     "unknown"   NA         
[29545] NA          "unknown"   "unknown"   "other"     "circle"    "circle"   
[29551] "other"     "diamond"   "other"     "fireball"  "unknown"   "light"    
[29557] "cigar"     "changing"  "light"     "flash"     "triangle"  NA         
[29563] "flash"     "other"     "changing"  "triangle"  "unknown"   "changing" 
[29569] "unknown"   "sphere"    "light"     "egg"       "circle"    "unknown"  
[29575] "oval"      "oval"      "disk"      "light"     "fireball"  "teardrop" 
[29581] "light"     "other"     "unknown"   "egg"       "changing"  "rectangle"
[29587] "flash"     "light"     "flash"     "circle"    "oval"      "cylinder" 
[29593] "cylinder"  "unknown"   "light"     "light"     "triangle"  "unknown"  
[29599] "unknown"   "unknown"   "changing"  "circle"    "light"     "light"    
[29605] "circle"    "light"     "sphere"    "light"     "circle"    "cone"     
[29611] "fireball"  "light"     "light"     "flash"     "light"     "sphere"   
[29617] "light"     "cigar"     "oval"      "other"     "disk"      "light"    
[29623] "sphere"    "disk"      "fireball"  "flash"     "light"     "unknown"  
[29629] "triangle"  "light"     "other"     "light"     "circle"    "fireball" 
[29635] "disk"      "circle"    "circle"    "other"     "cigar"     "cross"    
[29641] "sphere"    "fireball"  "triangle"  "light"     "triangle"  "unknown"  
[29647] "light"     "disk"      "sphere"    "fireball"  "other"     "disk"     
[29653] "cigar"     "other"     "oval"      NA          "light"     "other"    
[29659] "circle"    "unknown"   "light"     "other"     "light"     "other"    
[29665] "unknown"   "fireball"  "fireball"  "unknown"   "formation" "flash"    
[29671] "disk"      "circle"    NA          "sphere"    "cigar"     "light"    
[29677] "oval"      "light"     "circle"    "light"     "light"     "circle"   
[29683] "circle"    "triangle"  "light"     "unknown"   "unknown"   "light"    
[29689] "cylinder"  "triangle"  "other"     "disk"      "triangle"  "light"    
[29695] "oval"      "light"     "light"     "egg"       "light"     "chevron"  
[29701] "unknown"   "triangle"  "light"     "light"     "fireball"  "fireball" 
[29707] "circle"    "fireball"  "cigar"     "chevron"   "sphere"    "light"    
[29713] "light"     "unknown"   "circle"    "triangle"  "disk"      "light"    
[29719] "circle"    "circle"    "other"     "unknown"   "oval"      "unknown"  
[29725] "unknown"   "circle"    "circle"    "light"     "sphere"    "light"    
[29731] "sphere"    "unknown"   "formation" "other"     "formation" "flash"    
[29737] "light"     "light"     "light"     "other"     "other"     "other"    
[29743] "circle"    "sphere"    "fireball"  "triangle"  "triangle"  "unknown"  
[29749] "other"     "teardrop"  "light"     "light"     "triangle"  "triangle" 
[29755] "light"     "disk"      "light"     "circle"    "diamond"   "light"    
[29761] "cylinder"  "circle"    "fireball"  "fireball"  "circle"    "sphere"   
[29767] "circle"    "disk"      "light"     "egg"       "unknown"   "circle"   
[29773] "disk"      "triangle"  "fireball"  "cylinder"  "fireball"  "light"    
[29779] "formation" "fireball"  "light"     "fireball"  "oval"      "triangle" 
[29785] "changing"  "circle"    "formation" "diamond"   "egg"       NA         
[29791] "triangle"  NA          NA          NA          NA          NA         
[29797] NA          NA          NA          NA          "circle"    "light"    
[29803] "fireball"  "circle"    "changing"  "changing"  "light"     "light"    
[29809] "circle"    "other"     "formation" "triangle"  "light"     "light"    
[29815] "changing"  "circle"    "circle"    "circle"    "fireball"  "fireball" 
[29821] "triangle"  "triangle"  "light"     "rectangle" "light"     "light"    
[29827] "sphere"    "sphere"    "light"     "light"     "light"     "other"    
[29833] "light"     "light"     "light"     "light"     "egg"       "sphere"   
[29839] "oval"      "light"     "triangle"  "fireball"  "light"     "circle"   
[29845] "other"     "unknown"   "sphere"    "triangle"  "cylinder"  "other"    
[29851] "oval"      "disk"      "unknown"   "formation" "triangle"  "fireball" 
[29857] "fireball"  "fireball"  NA          NA          "fireball"  "light"    
[29863] "sphere"    "circle"    "fireball"  "other"     "other"     "diamond"  
[29869] NA          "flash"     "unknown"   "circle"    "triangle"  "diamond"  
[29875] "light"     "fireball"  "light"     "egg"       "unknown"   "light"    
[29881] "fireball"  "rectangle" "oval"      "sphere"    "circle"    "light"    
[29887] "triangle"  "unknown"   "light"     "circle"    "egg"       "formation"
[29893] "other"     "triangle"  "rectangle" "formation" "oval"      "rectangle"
[29899] "chevron"   "triangle"  "unknown"   "triangle"  "other"     "changing" 
[29905] "light"     "diamond"   "oval"      "circle"    "other"     "light"    
[29911] "disk"      "other"     "triangle"  "circle"    "light"     NA         
[29917] "disk"      "light"     "light"     "other"     "flash"     NA         
[29923] "light"     "light"     "other"     "sphere"    "teardrop"  "egg"      
[29929] "triangle"  "light"     "light"     "circle"    "changing"  "light"    
[29935] "unknown"   "changing"  "unknown"   "light"     "light"     "unknown"  
[29941] "sphere"    "rectangle" "circle"    "changing"  "triangle"  "cigar"    
[29947] "disk"      "circle"    "oval"      "cigar"     "unknown"   "other"    
[29953] "chevron"   "oval"      "light"     "sphere"    "light"     "flash"    
[29959] NA          "light"     "flash"     "fireball"  "sphere"    "light"    
[29965] "sphere"    "light"     "fireball"  "unknown"   "unknown"   "light"    
[29971] "oval"      "circle"    "light"     "sphere"    "fireball"  "cigar"    
[29977] "circle"    "other"     "circle"    "oval"      "light"     "sphere"   
[29983] "circle"    "diamond"   "unknown"   "egg"       "other"     "disk"     
[29989] "light"     NA          NA          "other"     "other"     "sphere"   
[29995] "other"     "cylinder"  "fireball"  "rectangle" "unknown"   "light"    
[30001] "triangle"  "disk"      "light"     "light"     "chevron"   "cross"    
[30007] "fireball"  "rectangle" "light"     "formation" "other"     "unknown"  
[30013] "sphere"    "disk"      "unknown"   "light"     "circle"    "disk"     
[30019] "triangle"  "fireball"  "fireball"  "oval"      "sphere"    "light"    
[30025] "light"     "light"     "light"     "fireball"  "unknown"   "egg"      
[30031] "circle"    "fireball"  "light"     "sphere"    "diamond"   "triangle" 
[30037] "diamond"   "disk"      "diamond"   "unknown"   "fireball"  NA         
[30043] "triangle"  "circle"    "light"     "other"     "formation" "teardrop" 
[30049] "triangle"  "sphere"    "light"     "diamond"   "triangle"  "flash"    
[30055] "light"     "circle"    "oval"      "light"     "sphere"    "unknown"  
[30061] "circle"    "triangle"  "disk"      "fireball"  "disk"      "triangle" 
[30067] "oval"      "oval"      "changing"  "other"     "unknown"   "light"    
[30073] "rectangle" "triangle"  "circle"    "unknown"   "fireball"  "triangle" 
[30079] "sphere"    "light"     "oval"      "cylinder"  "circle"    "formation"
[30085] "changing"  "other"     "cylinder"  "light"     "light"     "light"    
[30091] "circle"    "unknown"   "disk"      "other"     "oval"      "triangle" 
[30097] "sphere"    "circle"    "light"     "light"     "circle"    "light"    
[30103] "rectangle" "light"     "disk"      "teardrop"  "chevron"   "light"    
[30109] "triangle"  "other"     "fireball"  "formation" "triangle"  "fireball" 
[30115] "unknown"   "other"     "disk"      "oval"      "triangle"  "light"    
[30121] "light"     "unknown"   "rectangle" "circle"    "fireball"  "teardrop" 
[30127] "cross"     "fireball"  "light"     "rectangle" "unknown"   "triangle" 
[30133] "triangle"  "fireball"  "changing"  "triangle"  "circle"    "oval"     
[30139] "light"     "other"     "changing"  "disk"      "light"     "oval"     
[30145] "unknown"   "triangle"  "unknown"   "circle"    "unknown"   "light"    
[30151] "light"     "fireball"  "triangle"  "triangle"  "circle"    NA         
[30157] "cigar"     "triangle"  "oval"      "sphere"    NA          NA         
[30163] NA          NA          "diamond"   "other"     "circle"    "triangle" 
[30169] "light"     "unknown"   "rectangle" "unknown"   "formation" "light"    
[30175] "fireball"  "triangle"  "light"     "diamond"   "cigar"     "light"    
[30181] "diamond"   "teardrop"  "oval"      "disk"      "formation" "triangle" 
[30187] "sphere"    "triangle"  "formation" "flash"     "light"     "sphere"   
[30193] "disk"      "other"     "cross"     NA          "oval"      "light"    
[30199] "triangle"  "light"     "light"     "circle"    "light"     "other"    
[30205] "triangle"  "triangle"  "formation" "oval"      "fireball"  "light"    
[30211] "unknown"   "triangle"  NA          "light"     "rectangle" "unknown"  
[30217] "light"     "formation" "sphere"    "light"     "light"     "fireball" 
[30223] "light"     "fireball"  "unknown"   "circle"    "light"     "light"    
[30229] "unknown"   "triangle"  "egg"       "light"     "light"     "diamond"  
[30235] "triangle"  "light"     "triangle"  "other"     "oval"      "oval"     
[30241] "light"     "light"     "circle"    "circle"    "other"     "light"    
[30247] "light"     "other"     "sphere"    "light"     "cylinder"  "unknown"  
[30253] "triangle"  "other"     NA          NA          "light"     "unknown"  
[30259] "other"     "light"     "light"     "diamond"   "flash"     "other"    
[30265] "light"     "light"     "circle"    "circle"    "fireball"  "formation"
[30271] NA          "light"     "circle"    "light"     "chevron"   "oval"     
[30277] "unknown"   "light"     "circle"    "light"     "light"     "light"    
[30283] "oval"      "light"     "fireball"  "light"     "circle"    "formation"
[30289] "circle"    "light"     "light"     NA          "diamond"   "disk"     
[30295] "oval"      "circle"    "cylinder"  "cone"      "disk"      "other"    
[30301] "cigar"     "light"     "fireball"  "triangle"  "light"     "unknown"  
[30307] "circle"    "circle"    "disk"      "cylinder"  NA          NA         
[30313] NA          NA          NA          NA          NA          NA         
[30319] "triangle"  "triangle"  "teardrop"  "circle"    "other"     "disk"     
[30325] "other"     "light"     "other"     "sphere"    "rectangle" "light"    
[30331] "triangle"  "light"     "other"     "changing"  "other"     "changing" 
[30337] "fireball"  "fireball"  "unknown"   "circle"    NA          "light"    
[30343] "light"     "diamond"   "unknown"   "circle"    "changing"  "circle"   
[30349] "circle"    "rectangle" "light"     "other"     "triangle"  "sphere"   
[30355] "fireball"  "triangle"  "light"     "unknown"   "fireball"  "circle"   
[30361] "circle"    "sphere"    "chevron"   "triangle"  "light"     "flash"    
[30367] "oval"      "fireball"  "oval"      "circle"    "cigar"     "light"    
[30373] "triangle"  "light"     "egg"       "light"     "unknown"   "light"    
[30379] "changing"  "light"     "circle"    "circle"    "circle"    "circle"   
[30385] "rectangle" "other"     "fireball"  "fireball"  NA          "flash"    
[30391] "flash"     "other"     NA          "unknown"   "fireball"  "unknown"  
[30397] "light"     "oval"      "light"     "light"     "disk"      "triangle" 
[30403] "triangle"  "sphere"    "cigar"     "light"     "cigar"     "light"    
[30409] "light"     "triangle"  "light"     "triangle"  "light"     "light"    
[30415] "oval"      NA          "triangle"  "rectangle" "disk"      "chevron"  
[30421] NA          "light"     "oval"      "triangle"  "triangle"  "light"    
[30427] "fireball"  "disk"      "circle"    "cigar"     "light"     "triangle" 
[30433] NA          "light"     "changing"  "light"     "light"     "diamond"  
[30439] "sphere"    "egg"       "circle"    "triangle"  "circle"    "circle"   
[30445] "fireball"  "circle"    "fireball"  "disk"      "cylinder"  "light"    
[30451] "disk"      "oval"      "triangle"  "fireball"  "sphere"    "triangle" 
[30457] "light"     "fireball"  "fireball"  "unknown"   "unknown"   "flash"    
[30463] "diamond"   "circle"    "cross"     NA          "changing"  "formation"
[30469] "formation" "light"     "flash"     "fireball"  "light"     "light"    
[30475] "sphere"    "triangle"  "unknown"   "light"     "disk"      "unknown"  
[30481] "circle"    "other"     NA          "oval"      "unknown"   "triangle" 
[30487] NA          "unknown"   "sphere"    "disk"      "disk"      "fireball" 
[30493] NA          NA          NA          "triangle"  "changing"  "disk"     
[30499] "changing"  "light"     "triangle"  "other"     "light"     "oval"     
[30505] "teardrop"  "sphere"    "disk"      "other"     "circle"    "light"    
[30511] "unknown"   "light"     "triangle"  "cylinder"  "oval"      "unknown"  
[30517] "formation" "fireball"  "light"     "oval"      "unknown"   "other"    
[30523] "sphere"    "light"     "disk"      NA          "other"     "sphere"   
[30529] "light"     "oval"      "sphere"    "triangle"  "diamond"   "circle"   
[30535] "unknown"   "circle"    "oval"      "fireball"  "flash"     "circle"   
[30541] "disk"      "light"     "fireball"  NA          "light"     "oval"     
[30547] "light"     "disk"      "disk"      "unknown"   "circle"    "other"    
[30553] "diamond"   "other"     "cylinder"  "other"     "egg"       "disk"     
[30559] "sphere"    "light"     "unknown"   "light"     "light"     "unknown"  
[30565] "unknown"   "changing"  "other"     "triangle"  "light"     "light"    
[30571] "other"     "disk"      "changing"  "light"     "other"     "circle"   
[30577] "circle"    "circle"    "light"     "triangle"  "triangle"  "sphere"   
[30583] "chevron"   "fireball"  "light"     "light"     "triangle"  "light"    
[30589] "circle"    "light"     "light"     "light"     "flash"     "cigar"    
[30595] "sphere"    "light"     "circle"    "light"     "circle"    "triangle" 
[30601] "light"     "circle"    "oval"      "light"     "oval"      "oval"     
[30607] "sphere"    "circle"    "light"     "disk"      "circle"    "chevron"  
[30613] "sphere"    "light"     "disk"      "formation" NA          "cylinder" 
[30619] "disk"      "circle"    "oval"      NA          "sphere"    "light"    
[30625] "circle"    "diamond"   "other"     "fireball"  "teardrop"  "cigar"    
[30631] "light"     "sphere"    "circle"    "fireball"  "light"     "light"    
[30637] "sphere"    "disk"      "sphere"    "fireball"  NA          "light"    
[30643] "light"     "sphere"    NA          "circle"    "light"     "light"    
[30649] "circle"    "diamond"   "light"     "unknown"   "changing"  "fireball" 
[30655] "unknown"   "changing"  "unknown"   "circle"    "circle"    "light"    
[30661] "formation" "light"     "fireball"  "sphere"    "rectangle" "light"    
[30667] "unknown"   "unknown"   "light"     "oval"      "chevron"   "light"    
[30673] "circle"    "other"     "circle"    "sphere"    "light"     "fireball" 
[30679] "oval"      "cross"     "circle"    "circle"    "chevron"   "sphere"   
[30685] "disk"      "circle"    "other"     "unknown"   "oval"      "unknown"  
[30691] "light"     NA          NA          NA          NA          NA         
[30697] NA          "sphere"    "sphere"    "circle"    "formation" "circle"   
[30703] "light"     "light"     "other"     "triangle"  "light"     "other"    
[30709] "fireball"  "fireball"  "fireball"  "cylinder"  "disk"      "light"    
[30715] "changing"  "diamond"   "disk"      "flash"     "oval"      "diamond"  
[30721] "disk"      "disk"      "triangle"  "triangle"  "sphere"    "unknown"  
[30727] "light"     "circle"    "circle"    "circle"    "changing"  "other"    
[30733] "triangle"  "changing"  "triangle"  "light"     "unknown"   "other"    
[30739] "cone"      "fireball"  "cigar"     "light"     "triangle"  "light"    
[30745] "light"     "fireball"  "triangle"  "circle"    "light"     "other"    
[30751] "oval"      "light"     "light"     "light"     "triangle"  "fireball" 
[30757] "fireball"  "diamond"   "rectangle" "light"     "light"     "light"    
[30763] "rectangle" "teardrop"  "cigar"     "light"     "other"     "cylinder" 
[30769] "egg"       "light"     "circle"    "sphere"    "circle"    "disk"     
[30775] "light"     "changing"  "unknown"   "light"     "unknown"   "sphere"   
[30781] "light"     "other"     "circle"    "light"     "light"     "circle"   
[30787] "light"     "disk"      "light"     "sphere"    "circle"    "triangle" 
[30793] "light"     NA          "light"     "unknown"   "unknown"   "oval"     
[30799] "circle"    "unknown"   "disk"      "light"     "light"     "light"    
[30805] "circle"    "light"     "disk"      "unknown"   "circle"    "light"    
[30811] "disk"      "triangle"  "other"     "triangle"  "chevron"   "circle"   
[30817] "sphere"    "diamond"   "oval"      "changing"  "diamond"   "fireball" 
[30823] "circle"    "sphere"    "cigar"     "other"     "light"     "sphere"   
[30829] "circle"    "triangle"  "fireball"  "unknown"   "sphere"    "other"    
[30835] "circle"    "light"     "light"     "formation" "fireball"  "diamond"  
[30841] "light"     "oval"      "light"     "formation" "sphere"    "triangle" 
[30847] "triangle"  "formation" "light"     "chevron"   "light"     "unknown"  
[30853] "disk"      "sphere"    "other"     "sphere"    "sphere"    "triangle" 
[30859] "oval"      "other"     "light"     NA          "cone"      NA         
[30865] NA          NA          "triangle"  NA          "unknown"   "light"    
[30871] "light"     "fireball"  "other"     "fireball"  "light"     "other"    
[30877] "light"     "fireball"  "fireball"  "other"     "light"     "other"    
[30883] "unknown"   "light"     "fireball"  "diamond"   "light"     "triangle" 
[30889] "other"     "changing"  "other"     NA          NA          "other"    
[30895] "other"     "cigar"     "light"     "chevron"   "other"     "sphere"   
[30901] "unknown"   "light"     "circle"    NA          "light"     "triangle" 
[30907] "flash"     "triangle"  "light"     "sphere"    "light"     "circle"   
[30913] "light"     "cylinder"  "egg"       "chevron"   "light"     "light"    
[30919] "egg"       "light"     "light"     "fireball"  "formation" "formation"
[30925] "fireball"  "light"     "light"     "light"     "circle"    "light"    
[30931] "cylinder"  "light"     "diamond"   "disk"      "light"     "egg"      
[30937] NA          "oval"      "sphere"    NA          "disk"      "fireball" 
[30943] "cylinder"  "light"     "other"     "other"     "oval"      "fireball" 
[30949] "fireball"  "unknown"   "light"     "light"     "light"     "circle"   
[30955] "other"     "changing"  "oval"      "cigar"     "circle"    "disk"     
[30961] "unknown"   "triangle"  "light"     "light"     "changing"  "fireball" 
[30967] "oval"      "disk"      "light"     "light"     "cross"     "other"    
[30973] "sphere"    "circle"    "diamond"   "oval"      "light"     "unknown"  
[30979] "sphere"    "unknown"   "unknown"   NA          "disk"      "light"    
[30985] NA          "light"     "sphere"    "circle"    "rectangle" "cone"     
[30991] "light"     "light"     "other"     "light"     "light"     "triangle" 
[30997] "light"     "circle"    "triangle"  "light"     "other"     "egg"      
[31003] "unknown"   "disk"      "formation" "triangle"  "cigar"     "unknown"  
[31009] "light"     "fireball"  "circle"    "changing"  "circle"    "flash"    
[31015] "light"     "light"     "light"     "fireball"  "sphere"    "light"    
[31021] "light"     "triangle"  "other"     "disk"      "triangle"  "changing" 
[31027] "light"     "unknown"   "changing"  "light"     "circle"    "light"    
[31033] "unknown"   "diamond"   "unknown"   "sphere"    "light"     "circle"   
[31039] "circle"    "light"     "triangle"  "formation" "circle"    "oval"     
[31045] "fireball"  "circle"    "unknown"   "changing"  "oval"      NA         
[31051] "other"     "light"     "unknown"   "light"     "light"     "cross"    
[31057] "disk"      "diamond"   "circle"    "circle"    "other"     "changing" 
[31063] "triangle"  "light"     "circle"    "other"     "sphere"    "light"    
[31069] "diamond"   "light"     "unknown"   "other"     "changing"  NA         
[31075] NA          NA          NA          NA          NA          NA         
[31081] "other"     "triangle"  "fireball"  "light"     "light"     "other"    
[31087] "light"     "changing"  "cylinder"  "cylinder"  "cylinder"  "light"    
[31093] "unknown"   "light"     "other"     "cigar"     "light"     "formation"
[31099] "diamond"   "diamond"   "diamond"   "other"     "other"     "flash"    
[31105] "egg"       "egg"       "other"     "light"     "cylinder"  "disk"     
[31111] "sphere"    "changing"  "disk"      "unknown"   "disk"      "unknown"  
[31117] "disk"      "disk"      NA          "circle"    "light"     "fireball" 
[31123] "other"     "other"     "sphere"    "fireball"  "fireball"  "circle"   
[31129] "oval"      "fireball"  "formation" "light"     "disk"      "triangle" 
[31135] "other"     "light"     "fireball"  "oval"      "fireball"  "unknown"  
[31141] "triangle"  "light"     "light"     "unknown"   "light"     "other"    
[31147] "chevron"   "disk"      "sphere"    "changing"  "rectangle" "light"    
[31153] NA          "changing"  "triangle"  "triangle"  "light"     "other"    
[31159] "unknown"   "fireball"  "triangle"  "teardrop"  "light"     "light"    
[31165] "sphere"    "light"     "circle"    "circle"    "sphere"    "triangle" 
[31171] "fireball"  "disk"      "fireball"  "disk"      "rectangle" "other"    
[31177] "circle"    "light"     "light"     "chevron"   "cylinder"  "light"    
[31183] "cylinder"  "light"     "light"     "triangle"  "light"     "disk"     
[31189] "sphere"    "light"     "flash"     "unknown"   "oval"      "other"    
[31195] "unknown"   "circle"    "light"     "light"     "light"     "light"    
[31201] "light"     "diamond"   "other"     "light"     "unknown"   "sphere"   
[31207] "triangle"  "circle"    "light"     "changing"  "unknown"   "unknown"  
[31213] "circle"    "triangle"  NA          "oval"      "fireball"  "circle"   
[31219] "other"     "fireball"  "flash"     "light"     "light"     "fireball" 
[31225] "sphere"    "circle"    "unknown"   "circle"    "other"     "unknown"  
[31231] "other"     "formation" "unknown"   "oval"      "oval"      "light"    
[31237] "rectangle" "circle"    "circle"    "light"     "fireball"  "light"    
[31243] "disk"      "circle"    "light"     "fireball"  "light"     "oval"     
[31249] "formation" "sphere"    "sphere"    "fireball"  "cone"      "light"    
[31255] "light"     "triangle"  "other"     "unknown"   "light"     "cigar"    
[31261] "triangle"  "circle"    "light"     "circle"    NA          "unknown"  
[31267] "light"     "light"     "other"     "sphere"    "unknown"   NA         
[31273] NA          NA          NA          NA          NA          NA         
[31279] "light"     "triangle"  NA          NA          "circle"    "light"    
[31285] "changing"  "egg"       "sphere"    "sphere"    "fireball"  NA         
[31291] "fireball"  "sphere"    "other"     "light"     "light"     "light"    
[31297] "sphere"    "triangle"  "disk"      "other"     "chevron"   "fireball" 
[31303] "cone"      "cigar"     "other"     "triangle"  NA          "disk"     
[31309] "unknown"   "triangle"  "circle"    "disk"      NA          "egg"      
[31315] "oval"      "fireball"  "rectangle" "sphere"    "fireball"  "oval"     
[31321] "unknown"   "circle"    "egg"       "circle"    "changing"  "formation"
[31327] "circle"    "formation" NA          "light"     NA          "fireball" 
[31333] "cigar"     "fireball"  "unknown"   "light"     "circle"    "fireball" 
[31339] "unknown"   "light"     "circle"    "other"     "triangle"  "cylinder" 
[31345] "cylinder"  "triangle"  "fireball"  "triangle"  "light"     "other"    
[31351] "disk"      "triangle"  "other"     "other"     "circle"    "disk"     
[31357] "light"     "light"     "light"     "formation" "light"     "unknown"  
[31363] "light"     "oval"      "diamond"   "cone"      "light"     "fireball" 
[31369] "fireball"  "rectangle" "light"     "light"     "changing"  "other"    
[31375] "disk"      "circle"    "triangle"  "flash"     "unknown"   "triangle" 
[31381] "light"     "oval"      "sphere"    "light"     "changing"  "fireball" 
[31387] "other"     "triangle"  NA          "fireball"  "oval"      "light"    
[31393] "light"     "teardrop"  NA          "diamond"   "light"     "circle"   
[31399] "triangle"  "formation" "light"     "sphere"    "disk"      "triangle" 
[31405] "light"     "light"     "unknown"   "fireball"  "light"     "unknown"  
[31411] "cross"     "triangle"  "cigar"     "light"     "circle"    "sphere"   
[31417] "light"     "formation" "light"     "triangle"  "light"     "diamond"  
[31423] "other"     "unknown"   "sphere"    "oval"      "light"     "triangle" 
[31429] "light"     "light"     "light"     "triangle"  "fireball"  "fireball" 
[31435] "light"     "unknown"   "circle"    "fireball"  "light"     "triangle" 
[31441] "diamond"   "circle"    "circle"    "unknown"   "circle"    "oval"     
[31447] NA          NA          NA          NA          "light"     NA         
[31453] "cigar"     "light"     "fireball"  "fireball"  "fireball"  "fireball" 
[31459] "other"     "unknown"   "chevron"   "disk"      "rectangle" "other"    
[31465] "fireball"  "disk"      "light"     "triangle"  "teardrop"  "light"    
[31471] "triangle"  "sphere"    "light"     "circle"    "chevron"   "formation"
[31477] "light"     "cigar"     "other"     "triangle"  "triangle"  "rectangle"
[31483] "chevron"   "oval"      "triangle"  "other"     "changing"  NA         
[31489] "changing"  "rectangle" "triangle"  "light"     "triangle"  "other"    
[31495] "disk"      "fireball"  "unknown"   "flash"     "light"     "circle"   
[31501] "circle"    "light"     "fireball"  "other"     "disk"      "light"    
[31507] "triangle"  "unknown"   "sphere"    "circle"    "sphere"    "triangle" 
[31513] "light"     "light"     "light"     "triangle"  "light"     "triangle" 
[31519] "sphere"    "egg"       "triangle"  "other"     "disk"      "formation"
[31525] "sphere"    "triangle"  "chevron"   "cigar"     "chevron"   "oval"     
[31531] "light"     "other"     "rectangle" "fireball"  "unknown"   "sphere"   
[31537] "changing"  "triangle"  "disk"      "unknown"   "sphere"    "fireball" 
[31543] "changing"  "sphere"    "circle"    "unknown"   "fireball"  "circle"   
[31549] "other"     "sphere"    "other"     "triangle"  "formation" "triangle" 
[31555] "circle"    "other"     "light"     "egg"       "cigar"     "circle"   
[31561] "sphere"    "light"     "triangle"  "diamond"   "triangle"  "cigar"    
[31567] "formation" "sphere"    "light"     "other"     "diamond"   "teardrop" 
[31573] "light"     "circle"    "light"     "triangle"  "oval"      "triangle" 
[31579] "formation" "circle"    "triangle"  "changing"  "light"     "oval"     
[31585] "light"     "light"     "formation" "formation" "cigar"     "sphere"   
[31591] "light"     "triangle"  "disk"      "circle"    "other"     "sphere"   
[31597] "triangle"  "circle"    "light"     "other"     "circle"    "triangle" 
[31603] "triangle"  "unknown"   "unknown"   "light"     "light"     "light"    
[31609] "changing"  "fireball"  "circle"    "other"     "unknown"   "sphere"   
[31615] "triangle"  "sphere"    "circle"    "light"     "triangle"  "triangle" 
[31621] NA          "egg"       NA          NA          "sphere"    NA         
[31627] "triangle"  "light"     "light"     "cylinder"  "cigar"     "fireball" 
[31633] "flash"     "fireball"  "oval"      "oval"      "oval"      "changing" 
[31639] "sphere"    NA          "circle"    "light"     "triangle"  "egg"      
[31645] "circle"    "formation" "triangle"  "light"     "triangle"  "cone"     
[31651] "cone"      "other"     "sphere"    "formation" "oval"      "oval"     
[31657] "unknown"   "disk"      "unknown"   NA          "chevron"   "light"    
[31663] "chevron"   "unknown"   "changing"  "fireball"  "diamond"   "disk"     
[31669] "disk"      "other"     "diamond"   "other"     "light"     "circle"   
[31675] "other"     "light"     "changing"  "circle"    "sphere"    "fireball" 
[31681] "disk"      "circle"    "chevron"   "oval"      "changing"  "light"    
[31687] "changing"  "flash"     "light"     "light"     NA          "sphere"   
[31693] "flash"     "light"     "fireball"  "teardrop"  "fireball"  "circle"   
[31699] "triangle"  "light"     "triangle"  "sphere"    "circle"    "cylinder" 
[31705] "other"     "light"     "unknown"   "light"     "circle"    "flash"    
[31711] "unknown"   "fireball"  "oval"      "triangle"  "triangle"  "rectangle"
[31717] "disk"      "light"     "sphere"    "light"     "circle"    "light"    
[31723] "circle"    "unknown"   "light"     "triangle"  "light"     "other"    
[31729] "circle"    "cigar"     "light"     "circle"    "disk"      "unknown"  
[31735] "triangle"  "light"     "formation" "other"     "cigar"     "light"    
[31741] "triangle"  "triangle"  "light"     "light"     "light"     "circle"   
[31747] "cross"     "light"     NA          "circle"    "egg"       "egg"      
[31753] "oval"      "flash"     "sphere"    "chevron"   "light"     "light"    
[31759] "circle"    NA          "light"     "light"     "oval"      "cylinder" 
[31765] "formation" "light"     "fireball"  "light"     "light"     NA         
[31771] NA          NA          "diamond"   "light"     "light"     "oval"     
[31777] "disk"      "other"     "fireball"  "triangle"  "flash"     "light"    
[31783] "other"     "unknown"   "rectangle" "light"     "light"     "egg"      
[31789] "disk"      "circle"    "light"     "light"     "unknown"   "unknown"  
[31795] "chevron"   "light"     "formation" "light"     "unknown"   "sphere"   
[31801] "teardrop"  "light"     "fireball"  "fireball"  "light"     "flash"    
[31807] "chevron"   "unknown"   "circle"    "cross"     "disk"      "unknown"  
[31813] "light"     "disk"      "unknown"   "flash"     "unknown"   "changing" 
[31819] "disk"      "sphere"    "triangle"  "triangle"  "other"     "formation"
[31825] "light"     "other"     "light"     "fireball"  "light"     "cone"     
[31831] "light"     "unknown"   "disk"      "unknown"   "circle"    "cigar"    
[31837] "triangle"  "oval"      "light"     "light"     "circle"    "triangle" 
[31843] "triangle"  "rectangle" "cigar"     "unknown"   "triangle"  "triangle" 
[31849] "sphere"    "circle"    "disk"      "egg"       "light"     "diamond"  
[31855] "cigar"     "triangle"  "light"     "oval"      "circle"    "light"    
[31861] "unknown"   "fireball"  "sphere"    "sphere"    "egg"       "oval"     
[31867] "disk"      "cylinder"  "unknown"   "rectangle" "light"     "circle"   
[31873] "light"     "teardrop"  "formation" "fireball"  "light"     "oval"     
[31879] "triangle"  "disk"      "light"     "disk"      "rectangle" "light"    
[31885] "flash"     "rectangle" "light"     "other"     "fireball"  "formation"
[31891] "sphere"    "triangle"  "sphere"    "fireball"  "light"     "circle"   
[31897] "circle"    "disk"      "unknown"   "oval"      "fireball"  "triangle" 
[31903] "light"     "unknown"   "other"     "unknown"   "oval"      "fireball" 
[31909] "triangle"  NA          "other"     "other"     "sphere"    "fireball" 
[31915] "light"     "light"     "unknown"   "unknown"   "circle"    "light"    
[31921] "unknown"   "light"     "light"     "light"     "light"     "unknown"  
[31927] "circle"    "rectangle" NA          NA          NA          "light"    
[31933] NA          NA          "light"     NA          NA          "sphere"   
[31939] "other"     "unknown"   "fireball"  "light"     "circle"    "flash"    
[31945] "circle"    "formation" "circle"    "light"     "light"     "light"    
[31951] "light"     "other"     "circle"    "light"     "oval"      "triangle" 
[31957] "disk"      "triangle"  "unknown"   "cigar"     "unknown"   "egg"      
[31963] "circle"    "triangle"  "disk"      "sphere"    "unknown"   "oval"     
[31969] "disk"      "light"     "fireball"  "oval"      "cigar"     "circle"   
[31975] "changing"  "light"     "unknown"   "disk"      "flash"     "light"    
[31981] "light"     "disk"      "disk"      "other"     "unknown"   "circle"   
[31987] "unknown"   NA          "triangle"  "circle"    "unknown"   "circle"   
[31993] "disk"      "changing"  "light"     "disk"      "light"     "oval"     
[31999] "other"     "unknown"   "unknown"   "other"     "unknown"   "fireball" 
[32005] "cigar"     "other"     "triangle"  "sphere"    "light"     "cross"    
[32011] "triangle"  "changing"  "light"     "triangle"  "rectangle" "other"    
[32017] "disk"      "circle"    "light"     "triangle"  "chevron"   "triangle" 
[32023] "disk"      "oval"      "light"     "chevron"   "chevron"   "triangle" 
[32029] "diamond"   "cigar"     "unknown"   "circle"    "circle"    "sphere"   
[32035] "diamond"   "disk"      "triangle"  "unknown"   "unknown"   "oval"     
[32041] "oval"      "light"     "circle"    "rectangle" "unknown"   "circle"   
[32047] "light"     "circle"    "circle"    "cylinder"  "diamond"   "light"    
[32053] "sphere"    "flash"     "light"     "light"     "fireball"  "fireball" 
[32059] "unknown"   NA          "light"     "oval"      "light"     "flash"    
[32065] "oval"      "triangle"  "light"     "other"     "circle"    "triangle" 
[32071] "other"     "fireball"  "light"     "unknown"   "circle"    "sphere"   
[32077] "diamond"   "unknown"   "circle"    "sphere"    "light"     "diamond"  
[32083] "light"     "diamond"   "light"     "fireball"  "light"     "unknown"  
[32089] "diamond"   "fireball"  "circle"    "triangle"  "circle"    "circle"   
[32095] "disk"      "triangle"  "fireball"  "light"     "circle"    "disk"     
[32101] NA          NA          NA          NA          NA          NA         
[32107] NA          NA          "light"     "oval"      "triangle"  "light"    
[32113] NA          "circle"    "other"     "circle"    "other"     "formation"
[32119] "changing"  "circle"    "sphere"    "chevron"   "light"     "sphere"   
[32125] "circle"    "disk"      "light"     "cone"      "egg"       "light"    
[32131] "light"     "flash"     "unknown"   "sphere"    "triangle"  "circle"   
[32137] "oval"      "circle"    "triangle"  "disk"      "formation" "unknown"  
[32143] "flash"     "unknown"   "light"     "diamond"   "circle"    "sphere"   
[32149] "light"     "light"     "triangle"  "light"     "unknown"   "disk"     
[32155] "oval"      "unknown"   "triangle"  "fireball"  "formation" NA         
[32161] "other"     "egg"       "light"     "chevron"   "cigar"     "triangle" 
[32167] "triangle"  "unknown"   "triangle"  "unknown"   "other"     "sphere"   
[32173] "circle"    "disk"      "sphere"    "triangle"  "fireball"  "light"    
[32179] "light"     "light"     "unknown"   "triangle"  "triangle"  "disk"     
[32185] "light"     "light"     "other"     "sphere"    "unknown"   "sphere"   
[32191] "disk"      "light"     "light"     "fireball"  "triangle"  "circle"   
[32197] NA          "light"     "circle"    "oval"      "light"     "triangle" 
[32203] "changing"  "sphere"    "teardrop"  "unknown"   "unknown"   "cylinder" 
[32209] "other"     "circle"    "changing"  "oval"      "unknown"   "light"    
[32215] "light"     "light"     "oval"      "oval"      "sphere"    "disk"     
[32221] "other"     "light"     "formation" "light"     "sphere"    "light"    
[32227] "rectangle" "light"     "light"     "triangle"  "fireball"  "unknown"  
[32233] "flash"     "egg"       "egg"       "light"     "oval"      "fireball" 
[32239] "triangle"  "circle"    "oval"      "oval"      "sphere"    "formation"
[32245] "light"     "light"     "sphere"    "light"     "chevron"   "triangle" 
[32251] "light"     "light"     "fireball"  "light"     "light"     NA         
[32257] "disk"      "changing"  "light"     "fireball"  "circle"    "fireball" 
[32263] "teardrop"  "fireball"  "unknown"   "triangle"  "other"     "light"    
[32269] "light"     NA          NA          "sphere"    "sphere"    "light"    
[32275] "egg"       "triangle"  "light"     "circle"    "changing"  "disk"     
[32281] "formation" "changing"  "changing"  "oval"      "light"     "light"    
[32287] "unknown"   "cigar"     "rectangle" "unknown"   "light"     "changing" 
[32293] "unknown"   "fireball"  "changing"  "light"     "triangle"  "unknown"  
[32299] "light"     "oval"      "formation" "unknown"   "light"     "light"    
[32305] "sphere"    "circle"    "triangle"  "disk"      "light"     "oval"     
[32311] "unknown"   "triangle"  "other"     "light"     "disk"      NA         
[32317] NA          NA          NA          "disk"      "other"     "sphere"   
[32323] "fireball"  "circle"    "light"     "oval"      "circle"    "triangle" 
[32329] "light"     "teardrop"  "triangle"  "light"     "unknown"   "light"    
[32335] "circle"    "oval"      "light"     "light"     "light"     "unknown"  
[32341] "circle"    "other"     "formation" NA          "other"     "light"    
[32347] "light"     "oval"      "disk"      "disk"      "egg"       "triangle" 
[32353] "unknown"   NA          "sphere"    "light"     "unknown"   "other"    
[32359] "sphere"    NA          "unknown"   "other"     "formation" "diamond"  
[32365] "disk"      "triangle"  "other"     "unknown"   "light"     "light"    
[32371] "fireball"  "triangle"  "circle"    "changing"  "other"     "other"    
[32377] "cylinder"  "changing"  "light"     "cigar"     "sphere"    "disk"     
[32383] "cylinder"  "light"     "disk"      "triangle"  "unknown"   "unknown"  
[32389] "cylinder"  "fireball"  "light"     "light"     "circle"    "chevron"  
[32395] "fireball"  "sphere"    "unknown"   "circle"    "light"     "other"    
[32401] "other"     "light"     "circle"    "chevron"   "light"     "light"    
[32407] "egg"       "oval"      "circle"    "circle"    "circle"    "light"    
[32413] "triangle"  "unknown"   "light"     "light"     "unknown"   "disk"     
[32419] "light"     "light"     "cigar"     "cigar"     "light"     "light"    
[32425] "cigar"     "fireball"  "light"     "other"     "light"     "triangle" 
[32431] "circle"    "sphere"    "circle"    "oval"      "disk"      "light"    
[32437] "circle"    NA          "disk"      "other"     "cone"      "sphere"   
[32443] "other"     "triangle"  "sphere"    "other"     "triangle"  "fireball" 
[32449] "other"     "fireball"  "light"     NA          "other"     "disk"     
[32455] "sphere"    "triangle"  "fireball"  "light"     "cone"      "cone"     
[32461] "triangle"  "fireball"  "disk"      "formation" "triangle"  "other"    
[32467] NA          NA          NA          NA          NA          NA         
[32473] NA          "disk"      "other"     "light"     "circle"    "circle"   
[32479] "unknown"   "light"     "light"     "triangle"  "circle"    "circle"   
[32485] "formation" "circle"    "other"     "fireball"  "light"     "light"    
[32491] "rectangle" "disk"      "light"     "light"     "oval"      "cylinder" 
[32497] "sphere"    "disk"      "light"     "other"     "fireball"  "cone"     
[32503] "oval"      "changing"  "oval"      "light"     "triangle"  "other"    
[32509] "circle"    "triangle"  "triangle"  "light"     "light"     "light"    
[32515] "cylinder"  "circle"    "triangle"  "fireball"  "other"     "other"    
[32521] "cylinder"  "light"     "changing"  "cigar"     "light"     "cross"    
[32527] "circle"    "circle"    "light"     "oval"      "teardrop"  "triangle" 
[32533] "sphere"    "other"     "sphere"    "rectangle" "circle"    "sphere"   
[32539] "disk"      "disk"      "triangle"  "triangle"  "fireball"  "light"    
[32545] "light"     "chevron"   "other"     "triangle"  "light"     "light"    
[32551] "cigar"     "other"     "disk"      "circle"    "fireball"  "unknown"  
[32557] "fireball"  "unknown"   NA          "light"     "triangle"  "sphere"   
[32563] "unknown"   "fireball"  "unknown"   "circle"    "formation" "cigar"    
[32569] "other"     "other"     "formation" "circle"    "circle"    "triangle" 
[32575] "oval"      "light"     "light"     "cigar"     "diamond"   "disk"     
[32581] "cigar"     "cone"      "circle"    "unknown"   "formation" "light"    
[32587] "unknown"   "circle"    "fireball"  "light"     "light"     "sphere"   
[32593] "fireball"  "light"     "disk"      "sphere"    NA          "disk"     
[32599] "light"     "chevron"   "light"     "unknown"   "rectangle" "circle"   
[32605] "light"     "triangle"  "diamond"   "sphere"    "light"     "triangle" 
[32611] "oval"      "light"     "other"     "light"     "sphere"    "disk"     
[32617] "cylinder"  "light"     "other"     "chevron"   "rectangle" "other"    
[32623] "fireball"  "sphere"    "fireball"  "light"     "fireball"  "fireball" 
[32629] "fireball"  "other"     NA          "circle"    "circle"    "light"    
[32635] "changing"  "diamond"   "cylinder"  "light"     "sphere"    "disk"     
[32641] "triangle"  "oval"      "other"     "sphere"    "other"     "circle"   
[32647] "other"     "light"     "circle"    "circle"    "oval"      "unknown"  
[32653] "triangle"  "disk"      "light"     NA          NA          "flash"    
[32659] "triangle"  "fireball"  "triangle"  "formation" "light"     "other"    
[32665] "triangle"  "formation" "oval"      "diamond"   "light"     "unknown"  
[32671] "unknown"   "light"     "triangle"  NA          "light"     "rectangle"
[32677] "light"     "disk"      "changing"  "triangle"  "oval"      NA         
[32683] "circle"    "light"     "light"     NA          "other"     "disk"     
[32689] "disk"      "sphere"    "unknown"   "light"     "egg"       "triangle" 
[32695] "sphere"    "formation" "circle"    "circle"    "unknown"   "disk"     
[32701] "unknown"   "light"     NA          "diamond"   "fireball"  "light"    
[32707] "light"     "unknown"   "cross"     "unknown"   "diamond"   NA         
[32713] "other"     "other"     "unknown"   "unknown"   "sphere"    "light"    
[32719] "oval"      "circle"    "other"     "cigar"     "cylinder"  "unknown"  
[32725] "fireball"  "light"     "circle"    "rectangle" "unknown"   "triangle" 
[32731] "circle"    "circle"    "triangle"  "unknown"   "rectangle" "other"    
[32737] "egg"       "other"     "fireball"  "circle"    "unknown"   "light"    
[32743] "triangle"  "oval"      "changing"  "light"     "unknown"   "light"    
[32749] "triangle"  "sphere"    "other"     "unknown"   "light"     "diamond"  
[32755] "oval"      "other"     "sphere"    "circle"    "disk"      "oval"     
[32761] "disk"      "oval"      "triangle"  "fireball"  "circle"    "light"    
[32767] "triangle"  "light"     "triangle"  "triangle"  "light"     "light"    
[32773] "triangle"  "triangle"  "disk"      "formation" "other"     "teardrop" 
[32779] "light"     "light"     "light"     "light"     "fireball"  "fireball" 
[32785] "sphere"    "light"     "light"     "light"     NA          "changing" 
[32791] "cigar"     "sphere"    "light"     "unknown"   "formation" "unknown"  
[32797] "unknown"   "disk"      "circle"    "sphere"    "other"     "chevron"  
[32803] NA          "light"     "oval"      "light"     "light"     "light"    
[32809] "light"     "circle"    "egg"       "cone"      "rectangle" "sphere"   
[32815] "other"     "disk"      NA          "light"     NA          NA         
[32821] "light"     "triangle"  "triangle"  "fireball"  "light"     "light"    
[32827] "light"     "teardrop"  "light"     "changing"  "other"     "unknown"  
[32833] "triangle"  "changing"  "triangle"  "cylinder"  "disk"      "circle"   
[32839] NA          "light"     "disk"      "fireball"  "other"     "disk"     
[32845] "formation" "unknown"   "triangle"  "triangle"  "light"     NA         
[32851] "changing"  "circle"    "changing"  "teardrop"  "sphere"    "teardrop" 
[32857] "light"     "light"     "oval"      "cigar"     NA          "light"    
[32863] "light"     "other"     "unknown"   "light"     "triangle"  "fireball" 
[32869] "other"     "light"     "triangle"  "fireball"  "triangle"  "sphere"   
[32875] "oval"      "sphere"    "disk"      "oval"      "disk"      "disk"     
[32881] "light"     "light"     "disk"      "circle"    "other"     "triangle" 
[32887] "light"     "circle"    "oval"      "other"     "formation" "triangle" 
[32893] "triangle"  "oval"      "light"     "oval"      "cigar"     "cigar"    
[32899] "chevron"   "light"     "formation" "fireball"  "flash"     "sphere"   
[32905] "circle"    "light"     "unknown"   "unknown"   "diamond"   "teardrop" 
[32911] "fireball"  NA          "triangle"  "light"     "light"     "unknown"  
[32917] "light"     "light"     "fireball"  "triangle"  "light"     "unknown"  
[32923] "triangle"  "sphere"    "oval"      "light"     "light"     "light"    
[32929] "light"     "fireball"  "unknown"   "oval"      "diamond"   "other"    
[32935] "triangle"  "light"     "circle"    "rectangle" "oval"      "triangle" 
[32941] "triangle"  "circle"    "rectangle" "sphere"    "light"     "rectangle"
[32947] NA          "chevron"   "circle"    "rectangle" "light"     "formation"
[32953] "circle"    "light"     "light"     "light"     "light"     "sphere"   
[32959] "triangle"  "light"     "fireball"  "fireball"  "light"     "circle"   
[32965] "light"     "formation" "formation" "formation" "chevron"   "other"    
[32971] "triangle"  "light"     "triangle"  "oval"      "other"     "other"    
[32977] "circle"    "light"     "oval"      "cylinder"  "formation" NA         
[32983] "light"     "cylinder"  "other"     "changing"  "light"     "disk"     
[32989] "circle"    "circle"    "circle"    "sphere"    "circle"    "cylinder" 
[32995] NA          NA          "unknown"   NA          NA          NA         
[33001] NA          NA          "other"     "cylinder"  "oval"      "egg"      
[33007] "triangle"  "other"     "other"     "light"     "fireball"  "triangle" 
[33013] "light"     "changing"  "rectangle" "circle"    "changing"  "changing" 
[33019] "light"     "light"     "light"     "changing"  "formation" "light"    
[33025] "triangle"  "triangle"  "fireball"  "light"     "sphere"    "oval"     
[33031] "unknown"   "light"     "circle"    "triangle"  "fireball"  "light"    
[33037] "diamond"   "unknown"   "light"     "cylinder"  "light"     "light"    
[33043] "unknown"   "light"     "changing"  "light"     "disk"      "circle"   
[33049] "unknown"   "fireball"  "disk"      "diamond"   "oval"      "cylinder" 
[33055] "triangle"  "fireball"  "cylinder"  "triangle"  "light"     "unknown"  
[33061] "triangle"  "oval"      "light"     "disk"      "light"     "formation"
[33067] "light"     "triangle"  "light"     "sphere"    "light"     "circle"   
[33073] "light"     "unknown"   "oval"      "other"     "oval"      NA         
[33079] "cylinder"  "fireball"  "disk"      "unknown"   "oval"      "sphere"   
[33085] "sphere"    "circle"    "formation" "light"     "light"     "light"    
[33091] NA          "triangle"  "cylinder"  "triangle"  NA          "sphere"   
[33097] "other"     "light"     "flash"     "light"     "sphere"    "chevron"  
[33103] "light"     "other"     "unknown"   "circle"    "circle"    "chevron"  
[33109] "circle"    "circle"    "cylinder"  "light"     "sphere"    "oval"     
[33115] "oval"      "sphere"    "diamond"   "triangle"  "other"     "light"    
[33121] "unknown"   "light"     "unknown"   "oval"      "light"     "disk"     
[33127] "triangle"  "oval"      "circle"    "cigar"     "circle"    "fireball" 
[33133] NA          "circle"    "light"     "fireball"  "unknown"   "unknown"  
[33139] "light"     "light"     "other"     "triangle"  "light"     "triangle" 
[33145] "triangle"  "cylinder"  "triangle"  NA          NA          NA         
[33151] NA          "oval"      "sphere"    "unknown"   "light"     "sphere"   
[33157] "sphere"    "triangle"  "circle"    "light"     "triangle"  "circle"   
[33163] "fireball"  "oval"      "disk"      "fireball"  "other"     "unknown"  
[33169] "circle"    "light"     "triangle"  "fireball"  "triangle"  "other"    
[33175] NA          "cigar"     "sphere"    "light"     "oval"      NA         
[33181] "light"     "changing"  "diamond"   "light"     "disk"      "light"    
[33187] "fireball"  "light"     "fireball"  "light"     "triangle"  "egg"      
[33193] "disk"      "disk"      "unknown"   "fireball"  "triangle"  "light"    
[33199] "light"     "fireball"  "disk"      "triangle"  "circle"    "sphere"   
[33205] "light"     "light"     "fireball"  "other"     "triangle"  "disk"     
[33211] "unknown"   "unknown"   "fireball"  "unknown"   "disk"      "light"    
[33217] "circle"    "sphere"    "unknown"   "circle"    "light"     "light"    
[33223] "light"     "cylinder"  "other"     "light"     "light"     "flash"    
[33229] "disk"      "rectangle" "light"     "cylinder"  "light"     "unknown"  
[33235] "sphere"    "light"     "other"     "cigar"     "unknown"   "triangle" 
[33241] "other"     "disk"      "circle"    "circle"    "cone"      "unknown"  
[33247] "other"     "unknown"   "triangle"  "triangle"  "triangle"  "changing" 
[33253] "egg"       "unknown"   "light"     "cigar"     "changing"  "light"    
[33259] "sphere"    "sphere"    "disk"      NA          "circle"    "circle"   
[33265] "circle"    "disk"      "oval"      "unknown"   "triangle"  "cigar"    
[33271] "cigar"     "oval"      "formation" "light"     "other"     "circle"   
[33277] "circle"    "light"     "teardrop"  "light"     "unknown"   "unknown"  
[33283] "unknown"   NA          "triangle"  "unknown"   "unknown"   NA         
[33289] "light"     "formation" "sphere"    "fireball"  "circle"    "cone"     
[33295] "triangle"  "circle"    "light"     "formation" "diamond"   "other"    
[33301] "circle"    "formation" "sphere"    "triangle"  "triangle"  "other"    
[33307] "light"     "circle"    "light"     "other"     "light"     "sphere"   
[33313] "circle"    "cigar"     "unknown"   "formation" "light"     "light"    
[33319] "cross"     "light"     "fireball"  "cylinder"  "light"     NA         
[33325] "circle"    "oval"      "triangle"  "unknown"   "light"     NA         
[33331] "delta"     "triangle"  NA          NA          NA          NA         
[33337] NA          "disk"      "cylinder"  "cylinder"  NA          NA         
[33343] NA          NA          NA          NA          NA          "oval"     
[33349] "circle"    "light"     "light"     "rectangle" "other"     "disk"     
[33355] "oval"      "unknown"   "triangle"  "other"     "light"     "other"    
[33361] "unknown"   "light"     "oval"      "changing"  "triangle"  "sphere"   
[33367] "circle"    NA          "unknown"   "light"     "light"     "triangle" 
[33373] "light"     "formation" "light"     "fireball"  "cylinder"  "fireball" 
[33379] "cigar"     "oval"      "fireball"  "light"     "disk"      "circle"   
[33385] "light"     "circle"    "light"     "other"     "light"     "sphere"   
[33391] "circle"    "sphere"    "circle"    "triangle"  "circle"    "fireball" 
[33397] "circle"    "light"     "fireball"  "fireball"  "fireball"  "disk"     
[33403] "unknown"   "fireball"  "formation" "sphere"    "light"     "light"    
[33409] "disk"      "disk"      "sphere"    "disk"      "circle"    "unknown"  
[33415] "unknown"   "disk"      "cylinder"  "light"     "sphere"    "flash"    
[33421] "light"     "unknown"   "egg"       "circle"    "unknown"   "triangle" 
[33427] "other"     "light"     "unknown"   "rectangle" "disk"      "light"    
[33433] "oval"      "disk"      "oval"      "circle"    "formation" "triangle" 
[33439] "oval"      "changing"  NA          "light"     "cylinder"  "sphere"   
[33445] "rectangle" "changing"  "changing"  "triangle"  "light"     "changing" 
[33451] NA          "circle"    "fireball"  "triangle"  "light"     "unknown"  
[33457] "triangle"  "unknown"   "sphere"    "light"     "light"     "circle"   
[33463] "light"     "triangle"  "sphere"    "other"     "other"     "circle"   
[33469] "formation" "circle"    "flash"     "light"     "oval"      "circle"   
[33475] "fireball"  "circle"    "fireball"  "fireball"  "diamond"   "fireball" 
[33481] "chevron"   "light"     "fireball"  "circle"    "circle"    "circle"   
[33487] "light"     "oval"      "light"     "circle"    "disk"      "disk"     
[33493] "disk"      "disk"      "sphere"    "triangle"  "formation" NA         
[33499] "disk"      "circle"    "disk"      "oval"      "triangle"  NA         
[33505] "formation" "triangle"  "sphere"    "light"     "unknown"   "light"    
[33511] "sphere"    "light"     "cone"      "diamond"   "formation" "chevron"  
[33517] "cigar"     "unknown"   "sphere"    "other"     "disk"      "other"    
[33523] "light"     "light"     "diamond"   "light"     "triangle"  "light"    
[33529] "sphere"    "circle"    "unknown"   "cylinder"  "unknown"   "cylinder" 
[33535] "fireball"  "diamond"   "sphere"    "light"     "unknown"   "circle"   
[33541] "formation" "other"     "triangle"  "fireball"  "circle"    "unknown"  
[33547] "fireball"  "disk"      "circle"    "cone"      "sphere"    "triangle" 
[33553] "disk"      "light"     "sphere"    "light"     "light"     "circle"   
[33559] "triangle"  "other"     "light"     "unknown"   "disk"      "sphere"   
[33565] "sphere"    "chevron"   "disk"      "unknown"   "cigar"     "disk"     
[33571] "disk"      "light"     "light"     "teardrop"  "light"     "rectangle"
[33577] "other"     "fireball"  "triangle"  "cigar"     "circle"    "disk"     
[33583] "light"     "sphere"    "egg"       "cigar"     "unknown"   "sphere"   
[33589] "unknown"   "light"     "oval"      "light"     "diamond"   "circle"   
[33595] "disk"      "oval"      "triangle"  "triangle"  "fireball"  "light"    
[33601] "circle"    "light"     "circle"    "flash"     "circle"    "oval"     
[33607] "changing"  "circle"    "triangle"  "unknown"   "changing"  "triangle" 
[33613] "light"     "triangle"  "light"     "light"     "other"     "sphere"   
[33619] "light"     "egg"       "fireball"  "oval"      "light"     "other"    
[33625] "light"     "oval"      "sphere"    "unknown"   "unknown"   "chevron"  
[33631] "cylinder"  "light"     "other"     "triangle"  "triangle"  "fireball" 
[33637] "circle"    "light"     "circle"    "disk"      "light"     "triangle" 
[33643] "sphere"    "flash"     "light"     "triangle"  "light"     "disk"     
[33649] "sphere"    "cigar"     "changing"  "light"     "light"     "oval"     
[33655] "light"     "triangle"  "diamond"   "disk"      "light"     "diamond"  
[33661] "unknown"   "other"     "fireball"  "fireball"  "fireball"  "triangle" 
[33667] "disk"      "triangle"  "light"     "fireball"  "oval"      "oval"     
[33673] "sphere"    "cigar"     "sphere"    "light"     "other"     "unknown"  
[33679] "sphere"    "triangle"  "light"     "triangle"  "flash"     "fireball" 
[33685] "light"     "circle"    "fireball"  "cigar"     "fireball"  "flash"    
[33691] "flash"     "egg"       "formation" "disk"      "triangle"  "light"    
[33697] "egg"       "circle"    "light"     "chevron"   "flash"     "other"    
[33703] NA          "triangle"  "unknown"   "circle"    "oval"      "cigar"    
[33709] "sphere"    "other"     "teardrop"  "triangle"  "circle"    NA         
[33715] "light"     "light"     "circle"    "unknown"   "unknown"   "triangle" 
[33721] "circle"    "flash"     "circle"    "other"     "unknown"   NA         
[33727] NA          NA          NA          "disk"      NA          "sphere"   
[33733] "sphere"    "light"     "light"     "other"     "circle"    "cone"     
[33739] "diamond"   "disk"      NA          "triangle"  "fireball"  "light"    
[33745] "triangle"  "other"     "triangle"  "unknown"   "triangle"  "sphere"   
[33751] "circle"    "light"     "egg"       "fireball"  "sphere"    "triangle" 
[33757] "triangle"  "oval"      "light"     NA          "disk"      "chevron"  
[33763] "chevron"   "light"     "triangle"  "diamond"   "circle"    "diamond"  
[33769] "other"     "diamond"   "triangle"  "triangle"  "triangle"  "fireball" 
[33775] "teardrop"  "triangle"  "sphere"    "fireball"  "light"     "oval"     
[33781] "triangle"  "disk"      NA          "teardrop"  "sphere"    "light"    
[33787] "light"     "triangle"  "circle"    "light"     "triangle"  "triangle" 
[33793] "light"     "cylinder"  "light"     "unknown"   "unknown"   "disk"     
[33799] "light"     "light"     "light"     NA          "disk"      "unknown"  
[33805] "flash"     "light"     "light"     "fireball"  "light"     "circle"   
[33811] "sphere"    "other"     "sphere"    "oval"      "changing"  "light"    
[33817] "light"     "light"     "disk"      "light"     "fireball"  "unknown"  
[33823] "rectangle" "formation" "sphere"    "triangle"  "changing"  "fireball" 
[33829] "cigar"     "triangle"  "light"     "fireball"  "light"     "other"    
[33835] "fireball"  "flash"     "fireball"  "sphere"    "diamond"   "disk"     
[33841] "light"     "disk"      "fireball"  "fireball"  "circle"    "other"    
[33847] "oval"      "chevron"   "triangle"  "changing"  "triangle"  "other"    
[33853] "fireball"  "unknown"   "triangle"  "triangle"  "light"     "other"    
[33859] "sphere"    "teardrop"  "unknown"   "teardrop"  "triangle"  NA         
[33865] "teardrop"  "light"     "disk"      "triangle"  "disk"      "formation"
[33871] "cone"      "oval"      "oval"      "triangle"  "light"     "light"    
[33877] "chevron"   "circle"    "formation" "changing"  "light"     "other"    
[33883] "light"     "circle"    "oval"      "light"     "oval"      "cylinder" 
[33889] "fireball"  "sphere"    "fireball"  "light"     "light"     "unknown"  
[33895] "light"     "diamond"   "other"     "cylinder"  "sphere"    "circle"   
[33901] "triangle"  "disk"      "light"     "circle"    "circle"    "circle"   
[33907] "oval"      NA          "diamond"   "sphere"    NA          "oval"     
[33913] "disk"      "oval"      "disk"      "light"     "cigar"     "unknown"  
[33919] "light"     "circle"    "light"     "unknown"   "disk"      "unknown"  
[33925] "sphere"    "oval"      "oval"      "other"     "unknown"   "chevron"  
[33931] "cigar"     "other"     "light"     "circle"    "disk"      "other"    
[33937] "cigar"     "fireball"  "disk"      "disk"      "triangle"  "triangle" 
[33943] "other"     "light"     "triangle"  "unknown"   "light"     "disk"     
[33949] "chevron"   "unknown"   "oval"      "fireball"  "egg"       "cigar"    
[33955] "oval"      "unknown"   "light"     "circle"    "light"     "cigar"    
[33961] "other"     "other"     "diamond"   "sphere"    "triangle"  "sphere"   
[33967] "unknown"   "other"     "light"     NA          "light"     "formation"
[33973] NA          NA          NA          NA          NA          NA         
[33979] NA          "unknown"   "circle"    "sphere"    "triangle"  "triangle" 
[33985] "fireball"  "fireball"  "unknown"   "rectangle" "formation" "other"    
[33991] "light"     "triangle"  "light"     "changing"  "disk"      "light"    
[33997] NA          "light"     "triangle"  NA          "triangle"  "light"    
[34003] "other"     "light"     "rectangle" "fireball"  "changing"  "triangle" 
[34009] "chevron"   "disk"      "chevron"   "triangle"  "sphere"    "triangle" 
[34015] "oval"      "disk"      "sphere"    "circle"    "light"     "disk"     
[34021] "circle"    "circle"    "unknown"   NA          "light"     "triangle" 
[34027] "fireball"  "disk"      "sphere"    "light"     "triangle"  "cigar"    
[34033] NA          "sphere"    "cigar"     "light"     "triangle"  "circle"   
[34039] "light"     "changing"  "other"     "sphere"    "other"     "oval"     
[34045] "light"     "changing"  "unknown"   "light"     "egg"       "triangle" 
[34051] "sphere"    "circle"    "disk"      "triangle"  "sphere"    "light"    
[34057] "teardrop"  "unknown"   "light"     "triangle"  "changing"  "circle"   
[34063] "triangle"  "sphere"    "teardrop"  NA          "rectangle" "unknown"  
[34069] "formation" "changing"  "light"     "light"     "oval"      "oval"     
[34075] "fireball"  "sphere"    "light"     "disk"      "light"     NA         
[34081] "other"     "teardrop"  "triangle"  "formation" "circle"    "circle"   
[34087] "light"     "oval"      "light"     "fireball"  "sphere"    "light"    
[34093] "unknown"   "fireball"  "triangle"  "light"     "changing"  "other"    
[34099] "unknown"   "unknown"   "formation" "chevron"   "disk"      "triangle" 
[34105] "chevron"   "changing"  "flash"     "oval"      "oval"      "sphere"   
[34111] "egg"       "light"     "triangle"  "triangle"  "fireball"  "other"    
[34117] "other"     "light"     "formation" "other"     "light"     NA         
[34123] "unknown"   "fireball"  "unknown"   "light"     "triangle"  "sphere"   
[34129] "sphere"    "fireball"  "triangle"  "unknown"   "unknown"   "oval"     
[34135] "triangle"  "disk"      "other"     "formation" "other"     "triangle" 
[34141] "unknown"   "rectangle" "light"     "circle"    "other"     "other"    
[34147] "disk"      NA          "fireball"  "light"     "other"     "circle"   
[34153] "cigar"     "triangle"  "fireball"  "flash"     "oval"      "circle"   
[34159] "circle"    "light"     "light"     "triangle"  "cylinder"  "fireball" 
[34165] "triangle"  "flash"     "light"     "other"     "circle"    "triangle" 
[34171] "formation" "fireball"  "sphere"    "triangle"  "unknown"   "light"    
[34177] "circle"    "oval"      "disk"      "light"     "oval"      "oval"     
[34183] NA          "oval"      "sphere"    "light"     "triangle"  NA         
[34189] "circle"    "light"     "disk"      "light"     "disk"      "cross"    
[34195] "other"     "light"     "circle"    "circle"    "cone"      "light"    
[34201] "formation" "triangle"  "sphere"    "sphere"    "cylinder"  "other"    
[34207] "circle"    "sphere"    NA          NA          "triangle"  "triangle" 
[34213] NA          NA          "unknown"   "unknown"   "unknown"   "triangle" 
[34219] "unknown"   "light"     "other"     "sphere"    "light"     "chevron"  
[34225] "triangle"  "chevron"   "sphere"    "light"     "triangle"  "formation"
[34231] "other"     "fireball"  "diamond"   "light"     "cylinder"  "sphere"   
[34237] "disk"      "cigar"     "light"     "fireball"  "triangle"  "triangle" 
[34243] "formation" "light"     "triangle"  "other"     "triangle"  "fireball" 
[34249] "light"     "sphere"    "cigar"     "oval"      "other"     "triangle" 
[34255] "light"     "circle"    "cross"     "triangle"  "cigar"     "flash"    
[34261] "unknown"   "light"     "light"     "light"     "light"     "circle"   
[34267] "light"     "light"     "other"     "fireball"  "disk"      "other"    
[34273] "light"     "other"     "unknown"   "sphere"    "cylinder"  "light"    
[34279] "light"     "unknown"   "triangle"  "sphere"    "light"     "egg"      
[34285] "unknown"   "sphere"    "light"     "light"     "sphere"    "cigar"    
[34291] "disk"      "triangle"  "unknown"   "changing"  "unknown"   "fireball" 
[34297] "sphere"    "oval"      "disk"      "fireball"  "unknown"   "teardrop" 
[34303] "unknown"   "sphere"    "light"     "fireball"  "fireball"  "fireball" 
[34309] "fireball"  "sphere"    "fireball"  NA          "unknown"   "fireball" 
[34315] "oval"      "unknown"   "other"     "disk"      "sphere"    "other"    
[34321] "triangle"  "light"     "light"     "fireball"  "other"     "light"    
[34327] "sphere"    "light"     "disk"      "light"     "triangle"  "unknown"  
[34333] "oval"      "sphere"    "disk"      "changing"  "other"     "rectangle"
[34339] "unknown"   "disk"      "oval"      "sphere"    "circle"    "light"    
[34345] "formation" "sphere"    "diamond"   "unknown"   "rectangle" "sphere"   
[34351] "triangle"  "light"     "cylinder"  "flash"     "light"     "cylinder" 
[34357] "light"     "changing"  "changing"  "triangle"  "light"     NA         
[34363] "circle"    "circle"    "light"     "light"     "unknown"   "unknown"  
[34369] "diamond"   "oval"      "disk"      "other"     "formation" "triangle" 
[34375] "light"     "sphere"    "circle"    "light"     "oval"      "cigar"    
[34381] "chevron"   "formation" "circle"    "triangle"  "diamond"   "oval"     
[34387] "changing"  "unknown"   "teardrop"  "fireball"  "sphere"    "other"    
[34393] "light"     "oval"      "triangle"  "changing"  "unknown"   "fireball" 
[34399] "light"     "light"     "light"     "unknown"   "unknown"   "unknown"  
[34405] "unknown"   "light"     "fireball"  "sphere"    "unknown"   "oval"     
[34411] "circle"    "light"     "light"     "circle"    "circle"    "circle"   
[34417] "circle"    "unknown"   NA          NA          "triangle"  "other"    
[34423] "circle"    "oval"      "sphere"    "triangle"  "formation" "triangle" 
[34429] "chevron"   "triangle"  "triangle"  "light"     "triangle"  "light"    
[34435] "diamond"   "formation" "chevron"   "chevron"   "circle"    "other"    
[34441] "triangle"  "triangle"  "triangle"  NA          "other"     "formation"
[34447] "chevron"   "triangle"  "light"     "light"     "formation" "formation"
[34453] "triangle"  "formation" NA          "triangle"  "sphere"    NA         
[34459] "triangle"  "triangle"  "unknown"   "formation" "chevron"   "unknown"  
[34465] "other"     NA          "chevron"   "formation" "triangle"  "triangle" 
[34471] "formation" "light"     "light"     "triangle"  "formation" "triangle" 
[34477] "formation" NA          "diamond"   "other"     "triangle"  "chevron"  
[34483] "formation" "rectangle" "sphere"    "formation" "formation" "circle"   
[34489] "fireball"  "light"     "other"     "light"     NA          "formation"
[34495] "triangle"  NA          "other"     "sphere"    "cigar"     "formation"
[34501] "formation" "circle"    "light"     "sphere"    "flash"     "light"    
[34507] "sphere"    "fireball"  "fireball"  "rectangle" "light"     "sphere"   
[34513] "light"     "diamond"   "unknown"   "rectangle" "light"     "circle"   
[34519] "light"     "sphere"    "unknown"   "cone"      "other"     "light"    
[34525] "unknown"   "other"     "flash"     "disk"      "light"     "light"    
[34531] "flash"     "unknown"   "unknown"   "sphere"    "circle"    "circle"   
[34537] "light"     "fireball"  "cigar"     "light"     "circle"    "sphere"   
[34543] "light"     "cone"      "circle"    "oval"      "light"     "disk"     
[34549] "formation" "triangle"  "chevron"   "disk"      NA          "circle"   
[34555] "circle"    "circle"    "unknown"   "disk"      "sphere"    "sphere"   
[34561] "triangle"  "formation" "other"     "disk"      "light"     "chevron"  
[34567] "circle"    "unknown"   "diamond"   "circle"    "light"     "light"    
[34573] "triangle"  "formation" "triangle"  "sphere"    "other"     "changing" 
[34579] "diamond"   "triangle"  "triangle"  "unknown"   "circle"    "triangle" 
[34585] "triangle"  "flash"     "oval"      "circle"    "triangle"  "light"    
[34591] "light"     "teardrop"  "other"     "disk"      "triangle"  "triangle" 
[34597] "circle"    "triangle"  "light"     "unknown"   "triangle"  "unknown"  
[34603] "sphere"    "triangle"  "rectangle" "light"     "unknown"   "other"    
[34609] "unknown"   "sphere"    "diamond"   "triangle"  "circle"    "disk"     
[34615] "light"     "cigar"     "formation" "sphere"    "triangle"  "cylinder" 
[34621] "other"     "chevron"   "light"     "other"     "unknown"   "flash"    
[34627] "sphere"    "sphere"    "cigar"     "disk"      "light"     "unknown"  
[34633] "oval"      "circle"    "triangle"  "unknown"   "circle"    "circle"   
[34639] "light"     "disk"      "sphere"    "light"     "oval"      "circle"   
[34645] "sphere"    "fireball"  "oval"      "triangle"  "changing"  "unknown"  
[34651] "light"     "triangle"  "light"     "light"     "circle"    "triangle" 
[34657] "fireball"  "oval"      "changing"  "circle"    "circle"    "teardrop" 
[34663] "light"     "triangle"  "circle"    "light"     "triangle"  "unknown"  
[34669] "light"     "formation" "light"     "flash"     "triangle"  "triangle" 
[34675] "triangle"  "changing"  "light"     "unknown"   "formation" "triangle" 
[34681] "circle"    "sphere"    "teardrop"  "unknown"   "oval"      "circle"   
[34687] "circle"    "formation" "unknown"   "fireball"  "light"     "changing" 
[34693] "changing"  "triangle"  "light"     "triangle"  "sphere"    "light"    
[34699] "other"     "unknown"   "circle"    "triangle"  "chevron"   NA         
[34705] NA          NA          NA          NA          NA          NA         
[34711] NA          "unknown"   "light"     "light"     "triangle"  "sphere"   
[34717] "triangle"  "triangle"  "oval"      "fireball"  "cigar"     "triangle" 
[34723] "triangle"  "light"     "circle"    "unknown"   "formation" "diamond"  
[34729] "cylinder"  NA          "disk"      "triangle"  "unknown"   "other"    
[34735] "light"     "light"     "other"     "changing"  "egg"       "other"    
[34741] "triangle"  "circle"    "other"     "light"     "disk"      "unknown"  
[34747] "fireball"  "unknown"   "other"     "cigar"     "unknown"   "triangle" 
[34753] "light"     "unknown"   "light"     "formation" "oval"      "light"    
[34759] "unknown"   "other"     "oval"      "disk"      "other"     "teardrop" 
[34765] "cigar"     "light"     "triangle"  "unknown"   "circle"    "disk"     
[34771] "light"     "triangle"  "light"     "unknown"   "disk"      "disk"     
[34777] "disk"      "disk"      "light"     "oval"      "light"     "other"    
[34783] "rectangle" "rectangle" "light"     "light"     "circle"    "flash"    
[34789] "chevron"   "cigar"     "formation" "light"     "triangle"  "triangle" 
[34795] "circle"    "light"     "formation" "triangle"  "circle"    "oval"     
[34801] "triangle"  "circle"    "unknown"   "circle"    "disk"      "circle"   
[34807] "light"     "light"     "other"     "circle"    "rectangle" "light"    
[34813] "circle"    "other"     "cigar"     "disk"      "oval"      "other"    
[34819] "light"     "unknown"   "flash"     "light"     "other"     "light"    
[34825] "sphere"    "rectangle" "light"     "cigar"     "light"     "other"    
[34831] "disk"      "disk"      "sphere"    "fireball"  "light"     "triangle" 
[34837] "circle"    "chevron"   "flash"     "other"     "cylinder"  "changing" 
[34843] "triangle"  "light"     "light"     "flash"     "fireball"  "oval"     
[34849] "other"     "other"     "unknown"   "triangle"  "flash"     "sphere"   
[34855] "unknown"   "unknown"   "other"     NA          "sphere"    "rectangle"
[34861] "disk"      "disk"      "light"     "fireball"  "formation" "light"    
[34867] "triangle"  NA          "circle"    "sphere"    "light"     "light"    
[34873] "circle"    "triangle"  "triangle"  "formation" "fireball"  "chevron"  
[34879] "disk"      "chevron"   "flash"     "chevron"   "rectangle" "unknown"  
[34885] "triangle"  "light"     "diamond"   "formation" "cylinder"  "oval"     
[34891] "oval"      "sphere"    "changing"  "light"     "fireball"  "sphere"   
[34897] "unknown"   "diamond"   "rectangle" "triangle"  "unknown"   "disk"     
[34903] "cigar"     NA          "formation" "disk"      "sphere"    "rectangle"
[34909] "cylinder"  "disk"      "disk"      "egg"       "cylinder"  "circle"   
[34915] "sphere"    "light"     "circle"    "cigar"     "cross"     "cigar"    
[34921] "light"     "diamond"   "unknown"   "sphere"    "unknown"   "fireball" 
[34927] "triangle"  "disk"      "circle"    "circle"    "rectangle" "disk"     
[34933] "rectangle" "light"     "circle"    "disk"      "oval"      "sphere"   
[34939] "formation" "light"     "disk"      "unknown"   "light"     "light"    
[34945] "other"     "disk"      "disk"      "circle"    "triangle"  "cigar"    
[34951] "circle"    "disk"      NA          "light"     "light"     "cone"     
[34957] "light"     "circle"    "disk"      "cylinder"  "rectangle" "triangle" 
[34963] "circle"    "other"     "oval"      "light"     "disk"      "unknown"  
[34969] "light"     "disk"      "disk"      "cigar"     "flash"     "other"    
[34975] "light"     "triangle"  "light"     "unknown"   "light"     "unknown"  
[34981] "fireball"  "cylinder"  "disk"      "disk"      "sphere"    "fireball" 
[34987] NA          "other"     "chevron"   NA          "light"     "changing" 
[34993] NA          "triangle"  NA          NA          NA          NA         
[34999] NA          NA          NA          NA          NA          NA         
[35005] NA          "flash"     "sphere"    "unknown"   "diamond"   "disk"     
[35011] "changing"  NA          "dome"      "flash"     "light"     "triangle" 
[35017] "oval"      "light"     "rectangle" "sphere"    "disk"      "light"    
[35023] "delta"     "triangle"  "sphere"    "light"     "triangle"  "disk"     
[35029] "triangle"  "disk"      "other"     "sphere"    "oval"      "cylinder" 
[35035] "light"     "sphere"    "fireball"  "light"     "light"     "fireball" 
[35041] NA          "unknown"   "light"     "circle"    "circle"    "light"    
[35047] "circle"    "sphere"    "changing"  "other"     "disk"      "changing" 
[35053] "rectangle" "diamond"   "rectangle" "disk"      "light"     "sphere"   
[35059] "light"     "light"     "oval"      "unknown"   NA          "oval"     
[35065] "light"     "changing"  "other"     "cigar"     "fireball"  "flash"    
[35071] "unknown"   "triangle"  "fireball"  "other"     "teardrop"  "changing" 
[35077] "chevron"   "oval"      "unknown"   "unknown"   "triangle"  "teardrop" 
[35083] "disk"      "sphere"    "oval"      "changing"  "other"     "circle"   
[35089] "other"     "light"     "fireball"  "triangle"  NA          "cylinder" 
[35095] "changing"  "circle"    "fireball"  "light"     "light"     "light"    
[35101] "oval"      "diamond"   "other"     "oval"      "egg"       NA         
[35107] NA          "disk"      "triangle"  "unknown"   "fireball"  "fireball" 
[35113] "circle"    "egg"       "changing"  "sphere"    "sphere"    "fireball" 
[35119] "light"     "unknown"   "disk"      "light"     "rectangle" "light"    
[35125] "light"     "unknown"   "light"     NA          "oval"      "disk"     
[35131] "formation" "triangle"  "circle"    "circle"    "fireball"  "circle"   
[35137] "egg"       "light"     "light"     "formation" "other"     "triangle" 
[35143] "triangle"  "light"     "teardrop"  "other"     "light"     "light"    
[35149] "circle"    "teardrop"  "rectangle" "cigar"     "other"     "unknown"  
[35155] "other"     NA          "disk"      "triangle"  "other"     "circle"   
[35161] "light"     "disk"      "unknown"   "light"     "changing"  "triangle" 
[35167] "disk"      "triangle"  "triangle"  "fireball"  "triangle"  "triangle" 
[35173] "light"     "triangle"  "triangle"  "light"     "formation" "disk"     
[35179] "light"     "teardrop"  "light"     "cylinder"  "other"     "light"    
[35185] "teardrop"  "changing"  "other"     "sphere"    "circle"    "cylinder" 
[35191] "disk"      "cone"      "triangle"  "light"     "light"     "oval"     
[35197] NA          "unknown"   "other"     "sphere"    "unknown"   "light"    
[35203] "other"     "fireball"  "light"     "sphere"    "triangle"  "light"    
[35209] "circle"    "fireball"  "fireball"  "formation" "light"     "sphere"   
[35215] "light"     "rectangle" "unknown"   "fireball"  "other"     "light"    
[35221] "light"     "oval"      "light"     "unknown"   "other"     "triangle" 
[35227] "unknown"   "light"     "light"     "circle"    "formation" "light"    
[35233] "light"     "triangle"  "other"     "triangle"  "other"     "rectangle"
[35239] "disk"      "rectangle" "light"     NA          "light"     "circle"   
[35245] "light"     "disk"      "unknown"   "circle"    "circle"    "cylinder" 
[35251] "fireball"  "fireball"  "chevron"   "other"     "triangle"  "circle"   
[35257] "flash"     "other"     "cross"     "circle"    "sphere"    "sphere"   
[35263] "other"     "unknown"   "triangle"  "light"     "light"     "unknown"  
[35269] "unknown"   "fireball"  "flash"     "circle"    "sphere"    "cigar"    
[35275] "light"     "circle"    "egg"       "fireball"  "sphere"    "sphere"   
[35281] "oval"      "oval"      "sphere"    "light"     "cylinder"  "circle"   
[35287] "fireball"  "unknown"   "light"     "unknown"   "triangle"  "fireball" 
[35293] "triangle"  "unknown"   "light"     "circle"    "circle"    "light"    
[35299] NA          "light"     "cigar"     "light"     "circle"    "sphere"   
[35305] "circle"    "disk"      "chevron"   "oval"      NA          NA         
[35311] "light"     "triangle"  "sphere"    "sphere"    "other"     "light"    
[35317] "fireball"  "light"     "sphere"    "cigar"     "fireball"  "unknown"  
[35323] "sphere"    "triangle"  "diamond"   "unknown"   "disk"      "sphere"   
[35329] "cigar"     "light"     "light"     "triangle"  "disk"      "teardrop" 
[35335] NA          "unknown"   "chevron"   "formation" "rectangle" "chevron"  
[35341] "formation" "cigar"     "triangle"  "triangle"  "fireball"  "diamond"  
[35347] "disk"      "cigar"     "cigar"     "other"     "sphere"    "fireball" 
[35353] "fireball"  "flash"     "oval"      "other"     "other"     "circle"   
[35359] "unknown"   "cigar"     "disk"      "light"     "formation" "light"    
[35365] "circle"    "light"     "light"     "fireball"  "triangle"  "unknown"  
[35371] "triangle"  "unknown"   "triangle"  "changing"  "oval"      "circle"   
[35377] "circle"    "light"     "oval"      "circle"    "oval"      "triangle" 
[35383] "unknown"   "other"     "fireball"  "light"     "oval"      "sphere"   
[35389] "light"     "chevron"   "triangle"  "triangle"  "light"     "triangle" 
[35395] NA          "light"     "other"     "cigar"     "sphere"    "formation"
[35401] "circle"    "triangle"  "light"     "light"     "circle"    "circle"   
[35407] NA          "circle"    "triangle"  "triangle"  "unknown"   "formation"
[35413] "triangle"  "light"     "formation" "unknown"   "chevron"   "light"    
[35419] "cross"     "circle"    "sphere"    "unknown"   "light"     "disk"     
[35425] "light"     "triangle"  "circle"    "other"     "unknown"   "disk"     
[35431] "diamond"   "unknown"   "disk"      "oval"      "light"     "light"    
[35437] "chevron"   "triangle"  "triangle"  "light"     "fireball"  "egg"      
[35443] "triangle"  "cylinder"  "unknown"   "triangle"  "light"     "rectangle"
[35449] "other"     "light"     "teardrop"  "light"     "circle"    "rectangle"
[35455] "unknown"   "circle"    "other"     "circle"    "circle"    "triangle" 
[35461] "light"     "triangle"  "light"     "triangle"  "light"     "circle"   
[35467] "fireball"  "circle"    "triangle"  "circle"    "cigar"     "other"    
[35473] "light"     "changing"  "light"     "diamond"   "triangle"  "circle"   
[35479] "oval"      "disk"      "circle"    "circle"    "diamond"   "rectangle"
[35485] "triangle"  "fireball"  "light"     "unknown"   "flash"     "light"    
[35491] "light"     "circle"    "circle"    "formation" "disk"      "disk"     
[35497] "triangle"  "chevron"   "oval"      "egg"       "egg"       NA         
[35503] NA          NA          NA          "triangle"  "sphere"    "triangle" 
[35509] "triangle"  "light"     "chevron"   "circle"    "triangle"  "sphere"   
[35515] "triangle"  "light"     "unknown"   "triangle"  "cylinder"  "triangle" 
[35521] "circle"    "light"     "triangle"  "unknown"   "triangle"  "diamond"  
[35527] "disk"      "cigar"     "oval"      "triangle"  "cylinder"  "egg"      
[35533] "egg"       "light"     "diamond"   "diamond"   "other"     "fireball" 
[35539] "light"     "flash"     "other"     "cylinder"  "unknown"   "light"    
[35545] "oval"      "formation" "diamond"   "sphere"    "circle"    "other"    
[35551] "other"     "triangle"  "other"     "other"     "light"     "light"    
[35557] "triangle"  "formation" "triangle"  "circle"    "sphere"    "other"    
[35563] "light"     "unknown"   "changing"  "cigar"     "light"     "triangle" 
[35569] "light"     "light"     "circle"    "oval"      "rectangle" "cross"    
[35575] "other"     "disk"      "sphere"    "oval"      "unknown"   "oval"     
[35581] "triangle"  "unknown"   "circle"    "light"     "light"     "cigar"    
[35587] "changing"  "triangle"  "disk"      "unknown"   "circle"    "formation"
[35593] "circle"    "fireball"  "disk"      "changing"  "unknown"   "rectangle"
[35599] "triangle"  "disk"      "disk"      "triangle"  "unknown"   "changing" 
[35605] "cigar"     "sphere"    "unknown"   "fireball"  "oval"      "circle"   
[35611] "light"     "other"     "light"     "sphere"    "other"     "unknown"  
[35617] "oval"      "circle"    "light"     "other"     "light"     "triangle" 
[35623] "disk"      "sphere"    "diamond"   "light"     "diamond"   "formation"
[35629] "light"     "light"     "oval"      "light"     "triangle"  "cylinder" 
[35635] "cigar"     "triangle"  "fireball"  "fireball"  "changing"  "light"    
[35641] "sphere"    "light"     "flash"     "light"     NA          "chevron"  
[35647] "triangle"  "fireball"  "circle"    "light"     "sphere"    NA         
[35653] "fireball"  "triangle"  "unknown"   "changing"  "light"     "formation"
[35659] "light"     "oval"      "other"     "light"     "cigar"     "fireball" 
[35665] "light"     "oval"      "circle"    "circle"    "fireball"  "light"    
[35671] "other"     "triangle"  NA          NA          "fireball"  "other"    
[35677] "light"     "unknown"   "light"     "oval"      "light"     "fireball" 
[35683] "light"     "oval"      "circle"    "circle"    "fireball"  "light"    
[35689] "circle"    "unknown"   "light"     "formation" "light"     "light"    
[35695] "light"     NA          "light"     NA          "flash"     "cylinder" 
[35701] "cylinder"  "triangle"  "sphere"    "flash"     "teardrop"  "oval"     
[35707] "light"     "light"     "formation" "disk"      "oval"      "triangle" 
[35713] "light"     "triangle"  "rectangle" "light"     "circle"    "other"    
[35719] "sphere"    "flash"     "circle"    "changing"  "cigar"     "unknown"  
[35725] "circle"    "circle"    "disk"      "unknown"   "light"     "circle"   
[35731] "cross"     "cylinder"  "sphere"    "other"     "fireball"  "oval"     
[35737] "flash"     "triangle"  "diamond"   NA          "sphere"    "cigar"    
[35743] "fireball"  "fireball"  "light"     "light"     "light"     "rectangle"
[35749] "unknown"   "triangle"  "cylinder"  "rectangle" "cigar"     "unknown"  
[35755] "sphere"    "triangle"  "triangle"  "formation" "light"     "light"    
[35761] "formation" "sphere"    "other"     "unknown"   "light"     "light"    
[35767] "disk"      "flash"     "fireball"  "light"     "circle"    "rectangle"
[35773] "disk"      "sphere"    "triangle"  "fireball"  "circle"    "fireball" 
[35779] "circle"    "triangle"  "unknown"   "fireball"  "circle"    "triangle" 
[35785] "light"     "light"     "light"     "unknown"   "disk"      "circle"   
[35791] "light"     "disk"      "sphere"    "circle"    "circle"    "flash"    
[35797] "unknown"   "fireball"  "circle"    "fireball"  "fireball"  "fireball" 
[35803] "triangle"  "sphere"    "other"     "unknown"   "fireball"  "rectangle"
[35809] "light"     "cylinder"  "light"     "light"     "light"     "light"    
[35815] "light"     "oval"      "unknown"   "other"     "sphere"    "formation"
[35821] "light"     "fireball"  "flash"     "light"     "triangle"  "disk"     
[35827] "formation" "unknown"   "triangle"  "sphere"    "circle"    "disk"     
[35833] "chevron"   "other"     "light"     "disk"      NA          NA         
[35839] NA          NA          "other"     "cigar"     "light"     "diamond"  
[35845] "other"     "other"     "formation" "oval"      "cross"     "oval"     
[35851] "light"     "fireball"  NA          "triangle"  "other"     "disk"     
[35857] "diamond"   "other"     "fireball"  "light"     "changing"  "light"    
[35863] "light"     "unknown"   "light"     "light"     "light"     "triangle" 
[35869] "circle"    "unknown"   "triangle"  "sphere"    "disk"      "chevron"  
[35875] "fireball"  "fireball"  "light"     "cigar"     "other"     "triangle" 
[35881] "cigar"     "light"     "light"     "circle"    "circle"    "circle"   
[35887] "light"     "oval"      "triangle"  "light"     "light"     "oval"     
[35893] "sphere"    "circle"    "changing"  "other"     "cigar"     "egg"      
[35899] "other"     "disk"      "oval"      "oval"      "triangle"  "disk"     
[35905] "oval"      "disk"      "fireball"  "changing"  "circle"    "changing" 
[35911] "circle"    NA          "disk"      "triangle"  "triangle"  "light"    
[35917] "other"     "light"     "circle"    "fireball"  "fireball"  "changing" 
[35923] "light"     "other"     "triangle"  "sphere"    "diamond"   "fireball" 
[35929] "oval"      NA          "triangle"  "triangle"  "oval"      "other"    
[35935] "light"     "light"     "triangle"  "triangle"  "light"     "triangle" 
[35941] "unknown"   "light"     "cigar"     "flash"     "formation" "triangle" 
[35947] "triangle"  "triangle"  "triangle"  "light"     "rectangle" "diamond"  
[35953] "chevron"   "unknown"   "triangle"  "circle"    "unknown"   "disk"     
[35959] "unknown"   "triangle"  "sphere"    "triangle"  "triangle"  "formation"
[35965] "circle"    "teardrop"  "oval"      "unknown"   "other"     "circle"   
[35971] "light"     "fireball"  "sphere"    "other"     "light"     "changing" 
[35977] "oval"      "unknown"   "other"     "oval"      "oval"      "unknown"  
[35983] "triangle"  "unknown"   "unknown"   "light"     "disk"      NA         
[35989] "other"     "rectangle" "unknown"   "disk"      "fireball"  "light"    
[35995] "light"     "light"     "fireball"  "triangle"  "formation" "fireball" 
[36001] "diamond"   "fireball"  "unknown"   "triangle"  "light"     "light"    
[36007] "light"     "triangle"  "cylinder"  "light"     "light"     "triangle" 
[36013] "fireball"  "oval"      "triangle"  "triangle"  "circle"    "formation"
[36019] "fireball"  "chevron"   "circle"    "light"     "rectangle" "disk"     
[36025] "disk"      "cylinder"  "disk"      "disk"      "disk"      "cigar"    
[36031] "rectangle" "circle"    "disk"      "other"     "disk"      "flash"    
[36037] "light"     "fireball"  "other"     "cylinder"  "circle"    "disk"     
[36043] NA          NA          "other"     "triangle"  "light"     "light"    
[36049] "light"     "triangle"  "fireball"  "formation" "triangle"  "disk"     
[36055] "egg"       "disk"      "chevron"   "sphere"    "triangle"  "other"    
[36061] "fireball"  "rectangle" "fireball"  "other"     "other"     "flash"    
[36067] "rectangle" "cigar"     "other"     "circle"    "chevron"   "triangle" 
[36073] "flash"     "disk"      "light"     "sphere"    "other"     "unknown"  
[36079] "circle"    NA          "unknown"   "other"     "disk"      "formation"
[36085] "oval"      "light"     "circle"    "unknown"   "cigar"     "changing" 
[36091] "light"     "triangle"  "chevron"   "disk"      "chevron"   "light"    
[36097] "circle"    "oval"      "light"     "disk"      "light"     "light"    
[36103] "unknown"   "fireball"  "light"     "triangle"  "fireball"  "light"    
[36109] "sphere"    "cylinder"  "other"     "light"     "cigar"     "cigar"    
[36115] "cigar"     "circle"    "sphere"    "sphere"    "circle"    "light"    
[36121] "fireball"  "sphere"    "unknown"   "circle"    "cigar"     "oval"     
[36127] "cigar"     "circle"    "triangle"  "disk"      "oval"      NA         
[36133] "teardrop"  "circle"    "circle"    "fireball"  "sphere"    "unknown"  
[36139] "other"     "sphere"    "light"     "light"     "sphere"    "other"    
[36145] "formation" "triangle"  "triangle"  "triangle"  "light"     "light"    
[36151] "sphere"    "light"     "egg"       "fireball"  "circle"    "changing" 
[36157] "disk"      "changing"  "changing"  "sphere"    "sphere"    "light"    
[36163] "formation" "cigar"     "triangle"  "light"     "light"     "light"    
[36169] "triangle"  "formation" "light"     "triangle"  "fireball"  "triangle" 
[36175] "flash"     "other"     "oval"      "light"     "other"     "fireball" 
[36181] "other"     "light"     "fireball"  "circle"    "other"     "disk"     
[36187] "light"     "light"     "light"     "triangle"  "light"     "light"    
[36193] "light"     "disk"      "unknown"   "disk"      "other"     NA         
[36199] "light"     "light"     "oval"      "other"     "oval"      "triangle" 
[36205] "unknown"   "sphere"    "sphere"    "oval"      "disk"      "fireball" 
[36211] "sphere"    "fireball"  "light"     "circle"    "cylinder"  "light"    
[36217] "light"     "circle"    "fireball"  "unknown"   "circle"    "sphere"   
[36223] "light"     "fireball"  "other"     "triangle"  "light"     "other"    
[36229] "other"     "unknown"   "light"     "light"     NA          "triangle" 
[36235] "light"     NA          "light"     "other"     NA          "light"    
[36241] "unknown"   "formation" "disk"      "disk"      "light"     "disk"     
[36247] "disk"      "other"     "teardrop"  "light"     "triangle"  "fireball" 
[36253] "disk"      "flash"     "formation" "formation" "unknown"   "disk"     
[36259] "unknown"   "unknown"   "cylinder"  "triangle"  NA          "sphere"   
[36265] "circle"    "light"     "formation" "unknown"   "light"     "oval"     
[36271] "flash"     "unknown"   "triangle"  "fireball"  "light"     "circle"   
[36277] "oval"      "circle"    "oval"      "chevron"   "unknown"   "unknown"  
[36283] "sphere"    "triangle"  "cigar"     "light"     "circle"    "fireball" 
[36289] "triangle"  "triangle"  "fireball"  "fireball"  "fireball"  "fireball" 
[36295] "sphere"    "light"     "light"     "fireball"  "fireball"  "other"    
[36301] "triangle"  "flash"     "other"     "light"     "triangle"  "triangle" 
[36307] "light"     "egg"       "triangle"  "triangle"  "light"     "fireball" 
[36313] "triangle"  "circle"    "light"     "chevron"   "fireball"  "light"    
[36319] "fireball"  "sphere"    "diamond"   "circle"    "fireball"  "light"    
[36325] "disk"      "light"     "triangle"  "sphere"    "unknown"   "light"    
[36331] "triangle"  "changing"  "light"     "flash"     "other"     "cigar"    
[36337] "light"     "triangle"  "oval"      "circle"    "circle"    "rectangle"
[36343] "changing"  "light"     "chevron"   "fireball"  "formation" "unknown"  
[36349] "changing"  "circle"    "circle"    "unknown"   "changing"  NA         
[36355] "fireball"  "light"     "other"     "oval"      "sphere"    "light"    
[36361] "changing"  "circle"    "sphere"    "circle"    "other"     "light"    
[36367] "cylinder"  "circle"    "other"     "circle"    "circle"    "light"    
[36373] "changing"  "light"     "other"     "unknown"   "light"     "light"    
[36379] "light"     "disk"      "other"     "disk"      "unknown"   "light"    
[36385] "formation" "sphere"    "circle"    "circle"    "light"     "fireball" 
[36391] NA          "other"     "light"     "unknown"   "light"     "circle"   
[36397] "light"     "light"     "light"     "other"     "triangle"  "light"    
[36403] "circle"    "circle"    "sphere"    "fireball"  "changing"  "chevron"  
[36409] "triangle"  "light"     "egg"       "circle"    "formation" "triangle" 
[36415] "unknown"   "circle"    "triangle"  NA          NA          NA         
[36421] "cross"     "triangle"  "circle"    "sphere"    "light"     "egg"      
[36427] "formation" "triangle"  "formation" "unknown"   "light"     "oval"     
[36433] "circle"    "oval"      "triangle"  "egg"       "triangle"  "cylinder" 
[36439] "rectangle" "cylinder"  "teardrop"  "fireball"  "unknown"   NA         
[36445] "changing"  "triangle"  "cylinder"  "cigar"     "other"     "changing" 
[36451] "disk"      "light"     NA          "fireball"  "egg"       "formation"
[36457] NA          "other"     "cigar"     "light"     "triangle"  "unknown"  
[36463] "other"     "flash"     "chevron"   "cigar"     "other"     "triangle" 
[36469] "light"     "triangle"  "chevron"   "cylinder"  "other"     "flash"    
[36475] "unknown"   "circle"    "other"     "sphere"    "flash"     "light"    
[36481] "other"     "disk"      "circle"    "other"     "chevron"   "unknown"  
[36487] "changing"  "flash"     "cigar"     "oval"      "light"     "light"    
[36493] "fireball"  "light"     "other"     "light"     "oval"      "disk"     
[36499] "sphere"    "formation" "light"     "triangle"  "light"     "unknown"  
[36505] "formation" "disk"      "unknown"   "sphere"    "light"     "light"    
[36511] "fireball"  "unknown"   "disk"      "other"     "light"     "light"    
[36517] "light"     "oval"      "unknown"   "light"     "light"     "light"    
[36523] "oval"      "unknown"   "sphere"    "changing"  "fireball"  "light"    
[36529] "oval"      "cross"     "oval"      "chevron"   "sphere"    "other"    
[36535] "chevron"   "disk"      "fireball"  "triangle"  "circle"    "unknown"  
[36541] "light"     "sphere"    "light"     "circle"    "cylinder"  "fireball" 
[36547] "triangle"  "light"     "circle"    "light"     "other"     "light"    
[36553] "oval"      "oval"      "fireball"  "fireball"  "chevron"   "fireball" 
[36559] "other"     "light"     "circle"    "light"     "fireball"  "fireball" 
[36565] "circle"    "light"     "teardrop"  "triangle"  "circle"    "light"    
[36571] "disk"      "disk"      "oval"      "light"     "other"     "chevron"  
[36577] "light"     "unknown"   "sphere"    "oval"      "light"     NA         
[36583] "sphere"    "circle"    "unknown"   NA          NA          NA         
[36589] NA          NA          "oval"      NA          "circle"    "light"    
[36595] "light"     "light"     "light"     "crescent"  "disk"      "oval"     
[36601] "light"     "disk"      "formation" "fireball"  "light"     "triangle" 
[36607] "formation" "triangle"  "formation" "formation" "other"     NA         
[36613] "triangle"  "oval"      "unknown"   "fireball"  "cylinder"  "unknown"  
[36619] "teardrop"  "disk"      "changing"  "light"     "flash"     "disk"     
[36625] "sphere"    "sphere"    "circle"    "oval"      "changing"  "triangle" 
[36631] "triangle"  "light"     "formation" "sphere"    "egg"       "light"    
[36637] "cylinder"  "triangle"  "light"     "triangle"  "triangle"  "oval"     
[36643] "light"     "triangle"  "light"     "unknown"   "unknown"   "oval"     
[36649] "circle"    "chevron"   "other"     "light"     "light"     "light"    
[36655] "changing"  "circle"    "formation" "light"     NA          "cylinder" 
[36661] "light"     "cigar"     "cone"      "sphere"    "disk"      "light"    
[36667] "teardrop"  "light"     "light"     "changing"  "unknown"   "circle"   
[36673] "flash"     "circle"    "disk"      "unknown"   "cone"      "fireball" 
[36679] "triangle"  "disk"      "changing"  "circle"    "cross"     "formation"
[36685] "unknown"   "circle"    "sphere"    "light"     "oval"      NA         
[36691] "disk"      NA          "oval"      "light"     "sphere"    "triangle" 
[36697] "other"     "other"     "light"     "triangle"  "circle"    "fireball" 
[36703] "oval"      "fireball"  "light"     "rectangle" "light"     "unknown"  
[36709] "circle"    "triangle"  "circle"    "fireball"  "cigar"     "fireball" 
[36715] "sphere"    "cigar"     "light"     "egg"       "unknown"   "light"    
[36721] "light"     NA          "light"     "disk"      "sphere"    "diamond"  
[36727] "unknown"   "fireball"  "other"     "unknown"   "fireball"  "fireball" 
[36733] "light"     "fireball"  "light"     "light"     "circle"    "fireball" 
[36739] "light"     "circle"    "circle"    "flash"     "disk"      "fireball" 
[36745] "light"     "changing"  "oval"      "circle"    "fireball"  "disk"     
[36751] "formation" "light"     "other"     "unknown"   "fireball"  "other"    
[36757] "cylinder"  "changing"  NA          "disk"      NA          NA         
[36763] NA          NA          NA          "light"     NA          "circle"   
[36769] "other"     "diamond"   "other"     "other"     "other"     "cigar"    
[36775] "oval"      NA          "sphere"    "triangle"  "cylinder"  "oval"     
[36781] "chevron"   "sphere"    "rectangle" "diamond"   "teardrop"  "rectangle"
[36787] "other"     "oval"      "disk"      "disk"      "fireball"  "unknown"  
[36793] "triangle"  "cigar"     "circle"    "changing"  "light"     "circle"   
[36799] "fireball"  "unknown"   "triangle"  "light"     "changing"  "changing" 
[36805] "changing"  "light"     "light"     "cone"      "fireball"  "sphere"   
[36811] "chevron"   "unknown"   "light"     "diamond"   "diamond"   "triangle" 
[36817] "circle"    "light"     "light"     "triangle"  "triangle"  "triangle" 
[36823] "circle"    "rectangle" "fireball"  "oval"      "changing"  "light"    
[36829] "light"     "disk"      "fireball"  "fireball"  "fireball"  "sphere"   
[36835] "light"     "unknown"   "cylinder"  "unknown"   "cylinder"  "light"    
[36841] "oval"      "oval"      "flash"     "changing"  "formation" "light"    
[36847] "diamond"   NA          "diamond"   "oval"      "triangle"  "oval"     
[36853] "light"     "disk"      "sphere"    "flash"     "other"     "unknown"  
[36859] "light"     "cigar"     "fireball"  "changing"  "light"     "triangle" 
[36865] "light"     "unknown"   "triangle"  "sphere"    "light"     "disk"     
[36871] "triangle"  "triangle"  "circle"    "circle"    "unknown"   "circle"   
[36877] "teardrop"  "unknown"   "unknown"   "triangle"  "teardrop"  "changing" 
[36883] "circle"    "circle"    "triangle"  "sphere"    "cigar"     "flash"    
[36889] "unknown"   "light"     "triangle"  "light"     "triangle"  "other"    
[36895] "fireball"  "disk"      "light"     "light"     "circle"    "fireball" 
[36901] "triangle"  "changing"  "light"     "fireball"  "fireball"  "light"    
[36907] "sphere"    "oval"      "flash"     "triangle"  "circle"    "fireball" 
[36913] "light"     "fireball"  "circle"    "disk"      "sphere"    "sphere"   
[36919] "rectangle" "flash"     "unknown"   "formation" "light"     "egg"      
[36925] "triangle"  "circle"    "oval"      "teardrop"  "disk"      "cigar"    
[36931] "disk"      "circle"    "disk"      NA          NA          NA         
[36937] NA          NA          NA          "formation" "sphere"    "light"    
[36943] "circle"    "light"     "triangle"  "fireball"  "fireball"  "disk"     
[36949] "light"     "circle"    "diamond"   "sphere"    "disk"      "triangle" 
[36955] "light"     "disk"      "oval"      "fireball"  "fireball"  "unknown"  
[36961] "light"     "chevron"   "light"     "other"     "other"     "flash"    
[36967] "sphere"    "oval"      "triangle"  "light"     "circle"    "fireball" 
[36973] "fireball"  "light"     "other"     "unknown"   "cone"      "cigar"    
[36979] "circle"    "fireball"  "light"     "cigar"     "light"     "circle"   
[36985] "light"     "light"     "unknown"   NA          "oval"      "light"    
[36991] "light"     "light"     "cross"     "circle"    "unknown"   "unknown"  
[36997] "other"     "light"     "triangle"  "disk"      "circle"    "disk"     
[37003] "sphere"    "triangle"  "chevron"   "flash"     "unknown"   "triangle" 
[37009] "triangle"  "oval"      "triangle"  "formation" "circle"    "light"    
[37015] "other"     "triangle"  "triangle"  "other"     "circle"    "other"    
[37021] "sphere"    NA          "rectangle" "light"     "other"     "disk"     
[37027] "triangle"  "triangle"  "unknown"   "other"     "light"     "circle"   
[37033] "disk"      "light"     "diamond"   "oval"      "sphere"    "fireball" 
[37039] "light"     "light"     "circle"    "sphere"    "oval"      NA         
[37045] "light"     "fireball"  "light"     "circle"    "cone"      "light"    
[37051] "light"     "fireball"  "fireball"  "triangle"  "light"     "light"    
[37057] "formation" "light"     "light"     "light"     "light"     "fireball" 
[37063] "sphere"    "formation" "diamond"   "oval"      "triangle"  NA         
[37069] "sphere"    NA          "light"     "disk"      "light"     "triangle" 
[37075] "circle"    NA          "triangle"  "triangle"  "sphere"    "cigar"    
[37081] "oval"      "fireball"  "disk"      "fireball"  "egg"       "flash"    
[37087] "egg"       "disk"      "triangle"  "other"     "triangle"  "cylinder" 
[37093] "triangle"  NA          NA          NA          "triangle"  NA         
[37099] NA          NA          NA          NA          NA          "diamond"  
[37105] "triangle"  "disk"      "oval"      "fireball"  "oval"      "unknown"  
[37111] "light"     "flash"     "circle"    "changing"  "unknown"   "cigar"    
[37117] "oval"      "disk"      "cross"     "chevron"   "light"     "disk"     
[37123] "other"     "triangle"  "fireball"  "light"     "chevron"   "light"    
[37129] "triangle"  "unknown"   "light"     "sphere"    "circle"    "light"    
[37135] "cigar"     "sphere"    "formation" "cigar"     "fireball"  "rectangle"
[37141] "circle"    "egg"       "egg"       "light"     "disk"      "circle"   
[37147] "light"     "triangle"  "triangle"  "rectangle" "light"     "sphere"   
[37153] "light"     "diamond"   "circle"    "light"     "fireball"  "triangle" 
[37159] "fireball"  "fireball"  "oval"      "triangle"  "flash"     "flash"    
[37165] "flash"     "unknown"   "circle"    "unknown"   "fireball"  "disk"     
[37171] "other"     "formation" "triangle"  "flash"     "circle"    "triangle" 
[37177] "circle"    "fireball"  "other"     "unknown"   "oval"      "other"    
[37183] "triangle"  "light"     "cone"      "egg"       "light"     "changing" 
[37189] "light"     "unknown"   "sphere"    "changing"  "light"     "triangle" 
[37195] "light"     "changing"  "light"     "triangle"  "formation" "oval"     
[37201] NA          "light"     "light"     "flash"     "unknown"   "formation"
[37207] "sphere"    "changing"  "unknown"   "other"     "unknown"   "circle"   
[37213] "oval"      "oval"      "disk"      "circle"    "light"     "unknown"  
[37219] "light"     "circle"    "rectangle" "changing"  NA          "circle"   
[37225] "triangle"  "other"     "circle"    "circle"    "formation" "triangle" 
[37231] "chevron"   "rectangle" "sphere"    "triangle"  "light"     "oval"     
[37237] "unknown"   "flash"     "triangle"  "fireball"  "light"     "circle"   
[37243] "oval"      "circle"    "unknown"   "fireball"  "circle"    NA         
[37249] "diamond"   "circle"    "triangle"  "sphere"    "sphere"    "light"    
[37255] "unknown"   "other"     "light"     "circle"    "cigar"     "oval"     
[37261] "sphere"    NA          NA          "cone"      NA          NA         
[37267] "light"     "circle"    "triangle"  "light"     "oval"      "light"    
[37273] "unknown"   "light"     "light"     "light"     "light"     "fireball" 
[37279] NA          "light"     "triangle"  "light"     "disk"      "disk"     
[37285] "disk"      "light"     "light"     "cigar"     "cone"      "triangle" 
[37291] "flash"     NA          "triangle"  "changing"  "triangle"  "circle"   
[37297] "light"     "triangle"  NA          "triangle"  "unknown"   "sphere"   
[37303] "triangle"  "other"     "disk"      "other"     "sphere"    "cigar"    
[37309] "fireball"  "light"     "oval"      "triangle"  "light"     "unknown"  
[37315] "unknown"   "other"     "changing"  "fireball"  "circle"    "triangle" 
[37321] "diamond"   "light"     "sphere"    "sphere"    "cylinder"  "cylinder" 
[37327] "unknown"   "circle"    "oval"      "disk"      "light"     "light"    
[37333] "light"     "light"     "light"     "light"     "triangle"  "triangle" 
[37339] "triangle"  "unknown"   "formation" "circle"    "oval"      "formation"
[37345] "circle"    "light"     "light"     "other"     "light"     NA         
[37351] "unknown"   "light"     "triangle"  "light"     "sphere"    "triangle" 
[37357] "formation" "changing"  "unknown"   NA          "other"     "unknown"  
[37363] "fireball"  "light"     "unknown"   "other"     "light"     "disk"     
[37369] "triangle"  "triangle"  "fireball"  "rectangle" "light"     "other"    
[37375] "unknown"   "other"     "triangle"  "triangle"  "triangle"  "chevron"  
[37381] "fireball"  "light"     "light"     "light"     "cigar"     "light"    
[37387] "triangle"  "fireball"  "triangle"  "unknown"   "triangle"  "light"    
[37393] "teardrop"  "triangle"  "triangle"  "flash"     "circle"    "other"    
[37399] "cylinder"  "flash"     "unknown"   "light"     "oval"      "disk"     
[37405] "other"     "formation" "circle"    "light"     NA          NA         
[37411] NA          NA          "light"     "sphere"    NA          "formation"
[37417] "formation" "disk"      "light"     "sphere"    "circle"    "circle"   
[37423] "light"     "disk"      "other"     "disk"      "fireball"  "disk"     
[37429] "egg"       "changing"  "light"     "cigar"     "light"     "circle"   
[37435] "light"     "fireball"  "other"     "disk"      "fireball"  "light"    
[37441] "formation" "sphere"    "chevron"   "cone"      "flash"     "teardrop" 
[37447] "circle"    "cone"      "disk"      "light"     "cigar"     "cigar"    
[37453] "unknown"   "other"     "sphere"    "disk"      "disk"      "light"    
[37459] "light"     "unknown"   "other"     "circle"    "other"     "fireball" 
[37465] "unknown"   "unknown"   "cone"      "formation" "unknown"   "circle"   
[37471] "light"     "changing"  "triangle"  "light"     "circle"    "cylinder" 
[37477] "light"     "changing"  "light"     "changing"  "cigar"     "flash"    
[37483] "unknown"   "egg"       "triangle"  "triangle"  "other"     "circle"   
[37489] "flash"     "light"     "triangle"  "other"     "formation" "triangle" 
[37495] "triangle"  "light"     "unknown"   "triangle"  "unknown"   "disk"     
[37501] "unknown"   "formation" "other"     "cylinder"  "triangle"  "flash"    
[37507] "unknown"   "fireball"  "formation" "unknown"   "fireball"  "flash"    
[37513] "unknown"   "fireball"  "triangle"  "flash"     "fireball"  "light"    
[37519] "other"     "cone"      "other"     "fireball"  "changing"  "light"    
[37525] "unknown"   "rectangle" "oval"      "rectangle" "light"     "light"    
[37531] "unknown"   "triangle"  "formation" "triangle"  "triangle"  "unknown"  
[37537] "triangle"  "triangle"  "triangle"  "teardrop"  "fireball"  "circle"   
[37543] "oval"      "unknown"   "rectangle" "sphere"    "formation" "triangle" 
[37549] "light"     "triangle"  "disk"      "unknown"   "fireball"  "circle"   
[37555] "sphere"    "triangle"  "unknown"   "light"     "triangle"  "triangle" 
[37561] "triangle"  "light"     "circle"    "circle"    "other"     "circle"   
[37567] "unknown"   "light"     "light"     NA          "disk"      "rectangle"
[37573] "rectangle" "disk"      "sphere"    "cross"     "disk"      "fireball" 
[37579] "sphere"    "unknown"   "light"     "fireball"  "circle"    "sphere"   
[37585] "circle"    "circle"    "light"     "triangle"  "other"     "light"    
[37591] "light"     "fireball"  "formation" "oval"      "light"     "unknown"  
[37597] "triangle"  "circle"    "other"     "diamond"   "light"     "light"    
[37603] "chevron"   "other"     "other"     "light"     "changing"  NA         
[37609] "light"     "triangle"  "light"     "disk"      "changing"  "oval"     
[37615] "disk"      "disk"      "circle"    "triangle"  "light"     "light"    
[37621] "diamond"   "circle"    "fireball"  "oval"      "light"     "unknown"  
[37627] "light"     "light"     "circle"    "other"     "disk"      "unknown"  
[37633] "triangle"  "circle"    "other"     "oval"      "unknown"   "triangle" 
[37639] "circle"    "changing"  "light"     "other"     "teardrop"  "flash"    
[37645] "sphere"    "circle"    "light"     "unknown"   "unknown"   "egg"      
[37651] "light"     "unknown"   "light"     "triangle"  "formation" "changing" 
[37657] "fireball"  "disk"      "unknown"   "fireball"  "cylinder"  "unknown"  
[37663] "unknown"   "triangle"  "triangle"  "circle"    "sphere"    "oval"     
[37669] "light"     "disk"      "oval"      "sphere"    "disk"      "formation"
[37675] "diamond"   "triangle"  NA          "unknown"   NA          "light"    
[37681] "disk"      "light"     "oval"      "circle"    "fireball"  "formation"
[37687] "triangle"  "cigar"     "unknown"   "disk"      "fireball"  "fireball" 
[37693] "formation" "unknown"   "circle"    "cylinder"  "fireball"  "circle"   
[37699] "other"     "fireball"  "flash"     "light"     "sphere"    "circle"   
[37705] "triangle"  "changing"  "light"     "cylinder"  "fireball"  "fireball" 
[37711] "light"     "unknown"   "oval"      "disk"      "disk"      "circle"   
[37717] "chevron"   "disk"      "rectangle" NA          "other"     NA         
[37723] NA          NA          NA          "disk"      NA          "changing" 
[37729] "light"     "fireball"  "chevron"   "sphere"    "triangle"  "unknown"  
[37735] "light"     "changing"  "changing"  "circle"    "circle"    "light"    
[37741] "triangle"  "oval"      "formation" "light"     "light"     "oval"     
[37747] "other"     "other"     "sphere"    "triangle"  "formation" "circle"   
[37753] "chevron"   "egg"       "circle"    "light"     "triangle"  "diamond"  
[37759] "triangle"  "cigar"     "circle"    "light"     "egg"       "light"    
[37765] "cross"     "cylinder"  "triangle"  "light"     "chevron"   "other"    
[37771] "egg"       "other"     "light"     "light"     NA          "circle"   
[37777] "formation" "unknown"   "light"     "light"     "circle"    "light"    
[37783] "sphere"    "light"     "triangle"  "changing"  "circle"    "other"    
[37789] "other"     "triangle"  "circle"    "light"     "light"     "sphere"   
[37795] "cigar"     "unknown"   "diamond"   "formation" "oval"      "light"    
[37801] "circle"    "cigar"     "disk"      "disk"      "egg"       "teardrop" 
[37807] "disk"      "light"     "rectangle" NA          "triangle"  "light"    
[37813] "flash"     "flash"     "changing"  "light"     "light"     "circle"   
[37819] "fireball"  "sphere"    "sphere"    "fireball"  "fireball"  "light"    
[37825] "light"     "light"     "formation" "light"     "light"     "changing" 
[37831] "triangle"  "light"     "circle"    "oval"      "light"     "circle"   
[37837] "triangle"  "circle"    "triangle"  "light"     "light"     "triangle" 
[37843] "triangle"  "triangle"  "changing"  "circle"    "light"     "cigar"    
[37849] "cigar"     "light"     "changing"  "diamond"   "oval"      "triangle" 
[37855] "formation" "light"     "changing"  "changing"  "cylinder"  "fireball" 
[37861] "circle"    "unknown"   "circle"    "diamond"   "egg"       "light"    
[37867] "triangle"  "circle"    "triangle"  "other"     "light"     "circle"   
[37873] "light"     "light"     "unknown"   "triangle"  "flash"     "other"    
[37879] "sphere"    "chevron"   "triangle"  "fireball"  "circle"    "sphere"   
[37885] "cigar"     "circle"    "sphere"    "light"     "sphere"    "light"    
[37891] "sphere"    "oval"      "light"     "cylinder"  "circle"    "circle"   
[37897] "circle"    "changing"  "other"     NA          "cigar"     NA         
[37903] NA          NA          NA          "cross"     "cylinder"  "light"    
[37909] NA          "light"     "formation" "other"     "formation" "circle"   
[37915] "sphere"    "light"     "cone"      "disk"      "fireball"  "circle"   
[37921] "flash"     "light"     "circle"    "light"     "fireball"  "triangle" 
[37927] "cigar"     "disk"      "oval"      "diamond"   "light"     NA         
[37933] "light"     "unknown"   "light"     "sphere"    "sphere"    "changing" 
[37939] "other"     "circle"    "cylinder"  "oval"      "light"     "disk"     
[37945] "triangle"  "fireball"  "light"     "cone"      "unknown"   "oval"     
[37951] "other"     "cigar"     "triangle"  "fireball"  "unknown"   "formation"
[37957] "disk"      "light"     "cylinder"  "fireball"  "light"     NA         
[37963] "sphere"    "cigar"     "circle"    "formation" "teardrop"  "oval"     
[37969] "triangle"  "fireball"  "cigar"     "egg"       "triangle"  "flash"    
[37975] "unknown"   "light"     "teardrop"  "light"     NA          "light"    
[37981] "cigar"     "cigar"     "light"     "light"     "light"     "triangle" 
[37987] "triangle"  "light"     "disk"      "fireball"  "oval"      "egg"      
[37993] "cone"      "cylinder"  "unknown"   "light"     "unknown"   "disk"     
[37999] "disk"      "disk"      "triangle"  "sphere"    "sphere"    "other"    
[38005] "triangle"  "rectangle" "circle"    "egg"       "other"     "sphere"   
[38011] "light"     "triangle"  "disk"      "circle"    "light"     "light"    
[38017] "sphere"    "triangle"  "circle"    "light"     "light"     "disk"     
[38023] NA          "triangle"  "fireball"  "triangle"  "triangle"  "light"    
[38029] "other"     "unknown"   "disk"      "other"     "oval"      "light"    
[38035] "formation" "flash"     "circle"    "other"     "circle"    "fireball" 
[38041] "triangle"  "unknown"   "light"     "circle"    "diamond"   "rectangle"
[38047] "cigar"     "circle"    "changing"  "changing"  "triangle"  "changing" 
[38053] "light"     "light"     "unknown"   "unknown"   "fireball"  "circle"   
[38059] "fireball"  "fireball"  "triangle"  "sphere"    "sphere"    "light"    
[38065] "triangle"  "fireball"  "triangle"  "light"     NA          "other"    
[38071] "fireball"  "light"     "disk"      "teardrop"  "light"     "triangle" 
[38077] "triangle"  "light"     "other"     "circle"    "triangle"  "sphere"   
[38083] "triangle"  "light"     "triangle"  "unknown"   "light"     "light"    
[38089] NA          "chevron"   "oval"      "oval"      "disk"      "triangle" 
[38095] NA          "triangle"  NA          "light"     "triangle"  "sphere"   
[38101] "light"     "rectangle" "disk"      "chevron"   "unknown"   "fireball" 
[38107] "triangle"  "disk"      "light"     "circle"    "other"     "unknown"  
[38113] "circle"    "cigar"     "other"     "fireball"  "diamond"   "flash"    
[38119] "circle"    "oval"      "disk"      "circle"    "circle"    "fireball" 
[38125] "circle"    "circle"    "light"     "light"     "circle"    "oval"     
[38131] "unknown"   "circle"    "chevron"   "sphere"    "unknown"   "unknown"  
[38137] NA          "disk"      "unknown"   "light"     "disk"      "unknown"  
[38143] "circle"    NA          "triangle"  "light"     "rectangle" "triangle" 
[38149] "disk"      "triangle"  "flash"     "unknown"   "other"     "oval"     
[38155] "light"     "light"     "light"     "disk"      "formation" "light"    
[38161] "other"     "circle"    "disk"      "disk"      "cigar"     "fireball" 
[38167] "oval"      "light"     "unknown"   "light"     "circle"    "cylinder" 
[38173] "cross"     "oval"      "disk"      "light"     "triangle"  "light"    
[38179] "fireball"  "fireball"  "unknown"   "unknown"   "formation" "light"    
[38185] "formation" "egg"       "egg"       "light"     "unknown"   "sphere"   
[38191] "disk"      "light"     "light"     "cone"      "light"     NA         
[38197] NA          "fireball"  "light"     "light"     "light"     "other"    
[38203] "changing"  "light"     "cross"     "disk"      "light"     "unknown"  
[38209] "changing"  "other"     "light"     "circle"    "triangle"  "unknown"  
[38215] "other"     "unknown"   "changing"  "circle"    "light"     "light"    
[38221] "triangle"  "sphere"    "light"     "triangle"  "changing"  "fireball" 
[38227] "circle"    "sphere"    "light"     "cone"      "light"     "unknown"  
[38233] "formation" "circle"    "light"     "light"     "circle"    "cigar"    
[38239] "light"     "triangle"  "light"     "chevron"   "formation" "teardrop" 
[38245] "cigar"     "disk"      "sphere"    "disk"      "light"     "circle"   
[38251] "unknown"   "light"     "sphere"    "light"     "sphere"    "disk"     
[38257] "light"     "cross"     "disk"      "unknown"   "other"     "cigar"    
[38263] "rectangle" "triangle"  "light"     "triangle"  "light"     "sphere"   
[38269] "light"     "sphere"    "triangle"  "disk"      "triangle"  "other"    
[38275] "fireball"  "triangle"  "light"     "diamond"   "oval"      "circle"   
[38281] "light"     "light"     "circle"    "light"     "light"     "light"    
[38287] "light"     "disk"      "sphere"    "triangle"  "other"     "unknown"  
[38293] "cross"     "egg"       "cross"     "cone"      "unknown"   "formation"
[38299] "circle"    "other"     "formation" NA          NA          "circle"   
[38305] "sphere"    "light"     "other"     "diamond"   "light"     "sphere"   
[38311] "light"     "light"     "other"     "oval"      "diamond"   "diamond"  
[38317] "sphere"    "disk"      "other"     "fireball"  "light"     "circle"   
[38323] "light"     "other"     "circle"    "triangle"  "formation" "light"    
[38329] "unknown"   "sphere"    "cylinder"  "circle"    "disk"      "circle"   
[38335] "egg"       "light"     "other"     "triangle"  "light"     "oval"     
[38341] "sphere"    "circle"    "circle"    "oval"      "light"     "circle"   
[38347] "triangle"  "formation" "light"     "triangle"  "unknown"   "light"    
[38353] "disk"      "unknown"   NA          "fireball"  "fireball"  "unknown"  
[38359] "unknown"   "formation" "unknown"   "fireball"  "triangle"  "triangle" 
[38365] "sphere"    "light"     "triangle"  "oval"      "light"     "light"    
[38371] "sphere"    "light"     "triangle"  NA          "disk"      "light"    
[38377] "light"     "fireball"  "oval"      "other"     "other"     "triangle" 
[38383] "other"     NA          "light"     "sphere"    "cone"      "fireball" 
[38389] "fireball"  "formation" "light"     "light"     "oval"      "formation"
[38395] "circle"    "other"     "triangle"  "oval"      "other"     "cylinder" 
[38401] "circle"    "unknown"   "unknown"   "light"     "diamond"   "formation"
[38407] "light"     "fireball"  "other"     "sphere"    "fireball"  "triangle" 
[38413] "light"     "light"     "diamond"   "light"     "circle"    "unknown"  
[38419] "light"     "triangle"  "formation" "other"     "other"     "disk"     
[38425] "rectangle" "triangle"  "sphere"    NA          "oval"      NA         
[38431] "other"     "cigar"     "disk"      "disk"      "cigar"     "fireball" 
[38437] "light"     "sphere"    "fireball"  "light"     "other"     "fireball" 
[38443] "light"     "cone"      "light"     "other"     "sphere"    "fireball" 
[38449] "triangle"  "sphere"    "sphere"    "circle"    "light"     "light"    
[38455] "other"     "light"     "light"     "changing"  "fireball"  "light"    
[38461] "cigar"     "triangle"  "unknown"   "sphere"    "oval"      "other"    
[38467] "changing"  "sphere"    NA          "other"     "oval"      "fireball" 
[38473] "light"     "changing"  "unknown"   "diamond"   "other"     "changing" 
[38479] "sphere"    "triangle"  "teardrop"  "circle"    "light"     "light"    
[38485] "flash"     "light"     "triangle"  "fireball"  "triangle"  "circle"   
[38491] "cross"     "changing"  "sphere"    "oval"      "disk"      "circle"   
[38497] "light"     "chevron"   "triangle"  "light"     "triangle"  "changing" 
[38503] "other"     "light"     "circle"    "cylinder"  "cone"      "light"    
[38509] "circle"    "circle"    "flash"     "formation" "disk"      "light"    
[38515] "unknown"   "triangle"  "sphere"    "cone"      "triangle"  "triangle" 
[38521] "other"     "circle"    "chevron"   "light"     "triangle"  "light"    
[38527] "light"     "circle"    "formation" "other"     "other"     "unknown"  
[38533] "flash"     "fireball"  "triangle"  "triangle"  "oval"      "unknown"  
[38539] "other"     "unknown"   "circle"    "sphere"    "fireball"  "flash"    
[38545] "changing"  "light"     "flash"     "oval"      "circle"    "other"    
[38551] "light"     "triangle"  "changing"  "light"     "circle"    "triangle" 
[38557] "rectangle" "light"     "unknown"   "circle"    "sphere"    "light"    
[38563] "circle"    "egg"       "diamond"   "disk"      "triangle"  "fireball" 
[38569] "oval"      "fireball"  "unknown"   "triangle"  "triangle"  "circle"   
[38575] "light"     "sphere"    "rectangle" "light"     "changing"  "oval"     
[38581] "fireball"  "other"     "light"     NA          "light"     "chevron"  
[38587] "oval"      "circle"    "triangle"  "fireball"  "formation" "unknown"  
[38593] "circle"    "fireball"  "triangle"  "sphere"    "other"     "light"    
[38599] "changing"  "cigar"     NA          "fireball"  "diamond"   "formation"
[38605] "triangle"  "other"     "changing"  "rectangle" "unknown"   "light"    
[38611] "unknown"   "changing"  "disk"      "light"     "teardrop"  NA         
[38617] "diamond"   "light"     "other"     "cross"     "triangle"  "light"    
[38623] "disk"      "changing"  "light"     NA          "light"     "fireball" 
[38629] "fireball"  "cigar"     "circle"    "sphere"    "fireball"  "disk"     
[38635] "light"     "circle"    "unknown"   "light"     "other"     "oval"     
[38641] "disk"      "unknown"   "flash"     "chevron"   "oval"      "circle"   
[38647] "other"     "circle"    "light"     "disk"      "oval"      "light"    
[38653] "other"     "sphere"    "light"     "circle"    "circle"    "disk"     
[38659] "light"     "light"     "triangle"  "changing"  "formation" "oval"     
[38665] "disk"      "triangle"  "light"     "fireball"  "sphere"    "fireball" 
[38671] "sphere"    "unknown"   "light"     "formation" "triangle"  "teardrop" 
[38677] "circle"    "triangle"  "cigar"     "other"     "diamond"   "other"    
[38683] "light"     "circle"    NA          "sphere"    "circle"    "fireball" 
[38689] "disk"      "other"     "other"     "oval"      "light"     "other"    
[38695] "light"     "formation" "light"     "circle"    "circle"    "light"    
[38701] "sphere"    "light"     "triangle"  "diamond"   "light"     "triangle" 
[38707] "other"     "diamond"   "flash"     "light"     "fireball"  "teardrop" 
[38713] "circle"    "other"     "disk"      "oval"      "other"     "triangle" 
[38719] "oval"      "flash"     "fireball"  "unknown"   "light"     "light"    
[38725] "fireball"  "fireball"  "sphere"    "fireball"  "light"     "light"    
[38731] "circle"    "cone"      "light"     "rectangle" "light"     "circle"   
[38737] "triangle"  "triangle"  "light"     "other"     "light"     "light"    
[38743] "circle"    "other"     "triangle"  "oval"      "rectangle" "circle"   
[38749] "disk"      "triangle"  "triangle"  "light"     "disk"      "circle"   
[38755] "fireball"  "oval"      "oval"      "triangle"  "fireball"  "light"    
[38761] "rectangle" "diamond"   "disk"      "fireball"  "egg"       "triangle" 
[38767] NA          NA          NA          NA          NA          NA         
[38773] "light"     "other"     "sphere"    "light"     NA          "changing" 
[38779] "cigar"     "cigar"     "circle"    "oval"      "triangle"  "circle"   
[38785] "sphere"    "other"     "triangle"  "disk"      "light"     NA         
[38791] "light"     "triangle"  "disk"      "other"     "triangle"  "disk"     
[38797] "light"     "light"     "circle"    "fireball"  "other"     "light"    
[38803] "fireball"  "unknown"   "oval"      "light"     "egg"       "triangle" 
[38809] "disk"      "light"     NA          "other"     "sphere"    "formation"
[38815] "disk"      "light"     "sphere"    "light"     "light"     NA         
[38821] "formation" "triangle"  "changing"  "disk"      "chevron"   "chevron"  
[38827] "unknown"   "cigar"     "cylinder"  "other"     "light"     "fireball" 
[38833] "egg"       "triangle"  "disk"      "oval"      "egg"       "circle"   
[38839] "other"     "unknown"   "circle"    "triangle"  "triangle"  "light"    
[38845] "other"     "sphere"    "circle"    "circle"    "circle"    "circle"   
[38851] "triangle"  "light"     "oval"      "diamond"   "sphere"    "fireball" 
[38857] "light"     "disk"      "disk"      "unknown"   "light"     "disk"     
[38863] "unknown"   "light"     "fireball"  "circle"    "light"     "formation"
[38869] "formation" "cylinder"  "cigar"     "unknown"   "other"     "flash"    
[38875] "oval"      "chevron"   "sphere"    "light"     "unknown"   "changing" 
[38881] "triangle"  "fireball"  "light"     "cylinder"  "other"     "disk"     
[38887] "fireball"  "sphere"    "triangle"  "triangle"  "other"     "unknown"  
[38893] "circle"    "unknown"   "circle"    "circle"    "light"     "other"    
[38899] "light"     "light"     "sphere"    "light"     "other"     "egg"      
[38905] "cylinder"  "light"     "light"     "light"     "oval"      "light"    
[38911] "triangle"  "light"     "unknown"   "light"     "diamond"   "fireball" 
[38917] "diamond"   "light"     "other"     "rectangle" "rectangle" "disk"     
[38923] "circle"    "rectangle" "light"     "circle"    "triangle"  "circle"   
[38929] "oval"      "fireball"  "oval"      "disk"      "oval"      "triangle" 
[38935] "unknown"   NA          NA          "light"     NA          NA         
[38941] NA          NA          "disk"      "disk"      "flash"     "triangle" 
[38947] "triangle"  "cone"      "light"     "fireball"  "light"     "sphere"   
[38953] "sphere"    "light"     "fireball"  "light"     "cone"      "light"    
[38959] "light"     "light"     "other"     "unknown"   "formation" "circle"   
[38965] "light"     "sphere"    "oval"      "fireball"  "cone"      "light"    
[38971] "light"     "other"     "triangle"  "formation" "disk"      "fireball" 
[38977] "changing"  "unknown"   "egg"       "disk"      "fireball"  "light"    
[38983] "light"     "formation" "oval"      "other"     "formation" "circle"   
[38989] NA          "cigar"     "formation" "fireball"  "fireball"  "light"    
[38995] "fireball"  "triangle"  "light"     "disk"      "sphere"    "circle"   
[39001] "light"     "unknown"   "unknown"   "circle"    "triangle"  "flash"    
[39007] "changing"  "changing"  "triangle"  "other"     "triangle"  "light"    
[39013] "light"     "light"     "diamond"   "light"     "unknown"   "circle"   
[39019] "circle"    "light"     "triangle"  "circle"    "fireball"  "triangle" 
[39025] "triangle"  "formation" "circle"    "egg"       "sphere"    "egg"      
[39031] "cigar"     "cigar"     "other"     "disk"      "changing"  "other"    
[39037] "egg"       "light"     "fireball"  "light"     "cylinder"  "circle"   
[39043] "circle"    "light"     "oval"      "rectangle" "triangle"  "triangle" 
[39049] "light"     NA          "circle"    "teardrop"  "light"     "disk"     
[39055] "fireball"  "chevron"   "light"     "circle"    "triangle"  "cigar"    
[39061] "formation" "light"     "light"     "teardrop"  "other"     "light"    
[39067] "formation" "triangle"  "unknown"   "light"     "diamond"   "light"    
[39073] "sphere"    "unknown"   "cylinder"  "other"     "circle"    "light"    
[39079] "disk"      "other"     "rectangle" "cylinder"  "formation" "light"    
[39085] "fireball"  "unknown"   "fireball"  "light"     "oval"      "unknown"  
[39091] "light"     "circle"    "light"     "triangle"  "circle"    "flash"    
[39097] "changing"  "triangle"  "disk"      "unknown"   "other"     "formation"
[39103] "sphere"    "disk"      "sphere"    "triangle"  "light"     "circle"   
[39109] "circle"    "fireball"  "fireball"  "rectangle" "light"     "teardrop" 
[39115] "circle"    "unknown"   "triangle"  "fireball"  "disk"      "light"    
[39121] "fireball"  "light"     "disk"      "unknown"   "light"     "flash"    
[39127] "circle"    "sphere"    "cigar"     "triangle"  "light"     NA         
[39133] "light"     "light"     "oval"      "circle"    "fireball"  "sphere"   
[39139] "fireball"  "circle"    "circle"    "light"     "rectangle" "light"    
[39145] "sphere"    "formation" "formation" "fireball"  "other"     "unknown"  
[39151] "fireball"  "light"     "oval"      "other"     "unknown"   NA         
[39157] "disk"      "other"     "sphere"    "egg"       "triangle"  "light"    
[39163] "disk"      "disk"      "fireball"  "formation" NA          NA         
[39169] NA          "oval"      "disk"      "cigar"     "cylinder"  "changing" 
[39175] "circle"    "disk"      "oval"      "other"     "teardrop"  "light"    
[39181] "sphere"    "flash"     "light"     "cigar"     "other"     "oval"     
[39187] "circle"    "disk"      "unknown"   "triangle"  "triangle"  "other"    
[39193] "unknown"   "disk"      "disk"      "fireball"  "sphere"    "oval"     
[39199] "disk"      "chevron"   "other"     "light"     "cylinder"  "diamond"  
[39205] "other"     "cylinder"  "triangle"  "other"     "circle"    "rectangle"
[39211] "oval"      "sphere"    "disk"      "sphere"    "light"     "fireball" 
[39217] "light"     "light"     "disk"      "fireball"  "flash"     "unknown"  
[39223] "triangle"  "triangle"  "formation" "sphere"    "light"     "circle"   
[39229] "unknown"   "oval"      "fireball"  "sphere"    "oval"      "circle"   
[39235] "triangle"  "formation" "light"     "disk"      "unknown"   "triangle" 
[39241] "circle"    "light"     "light"     "light"     "disk"      "oval"     
[39247] "unknown"   "light"     "sphere"    "unknown"   "triangle"  "oval"     
[39253] "unknown"   "cylinder"  "changing"  "light"     "disk"      "oval"     
[39259] "oval"      "sphere"    "other"     "changing"  "light"     NA         
[39265] "disk"      "light"     "light"     "cylinder"  "cross"     "light"    
[39271] "other"     "oval"      "light"     "changing"  "sphere"    "disk"     
[39277] "light"     "sphere"    "unknown"   "light"     "unknown"   "fireball" 
[39283] "fireball"  "circle"    "light"     "formation" "light"     "light"    
[39289] "unknown"   "cylinder"  "triangle"  "unknown"   "triangle"  "light"    
[39295] "light"     "circle"    "changing"  "fireball"  "diamond"   "diamond"  
[39301] "changing"  "light"     "fireball"  "triangle"  "unknown"   "circle"   
[39307] "light"     "light"     "light"     "unknown"   "fireball"  "formation"
[39313] "formation" "fireball"  "fireball"  "changing"  NA          "fireball" 
[39319] "sphere"    "light"     "triangle"  "disk"      "light"     "circle"   
[39325] "teardrop"  "sphere"    "formation" "circle"    "triangle"  "circle"   
[39331] "sphere"    "light"     "light"     "unknown"   "rectangle" "triangle" 
[39337] "disk"      "unknown"   "other"     NA          NA          "other"    
[39343] "light"     "triangle"  "unknown"   "light"     "triangle"  "light"    
[39349] "triangle"  "triangle"  "oval"      "circle"    "light"     "fireball" 
[39355] "fireball"  "light"     "light"     "other"     "fireball"  "fireball" 
[39361] "fireball"  "triangle"  "sphere"    "sphere"    "fireball"  "fireball" 
[39367] "fireball"  "light"     "fireball"  "disk"      NA          "light"    
[39373] "fireball"  "fireball"  NA          "other"     "oval"      "unknown"  
[39379] "fireball"  "triangle"  "flash"     "changing"  "changing"  "disk"     
[39385] "egg"       "disk"      "oval"      "circle"    "other"     "fireball" 
[39391] "triangle"  "light"     "triangle"  "circle"    "sphere"    "oval"     
[39397] "changing"  "triangle"  "triangle"  "triangle"  "disk"      "light"    
[39403] "cylinder"  "triangle"  "light"     "flash"     "changing"  "triangle" 
[39409] "oval"      "circle"    "triangle"  "other"     "disk"      "teardrop" 
[39415] "other"     "oval"      "rectangle" "triangle"  NA          "light"    
[39421] "circle"    "sphere"    NA          "sphere"    "light"     "circle"   
[39427] "egg"       "oval"      "other"     NA          "oval"      "sphere"   
[39433] "unknown"   "oval"      "light"     "sphere"    "disk"      "egg"      
[39439] "light"     "light"     "chevron"   "other"     "sphere"    "flash"    
[39445] "oval"      "formation" "triangle"  "sphere"    "disk"      "cylinder" 
[39451] "changing"  "sphere"    "cigar"     "light"     "other"     "disk"     
[39457] "oval"      NA          NA          "light"     "light"     "triangle" 
[39463] "triangle"  "circle"    "light"     "chevron"   "light"     "teardrop" 
[39469] "rectangle" "light"     "light"     "changing"  "light"     "unknown"  
[39475] "circle"    "circle"    "chevron"   "sphere"    "triangle"  "fireball" 
[39481] "light"     "light"     "light"     "triangle"  "rectangle" "rectangle"
[39487] "formation" "light"     "other"     "chevron"   "triangle"  "disk"     
[39493] "formation" "diamond"   "fireball"  "rectangle" "cross"     "cylinder" 
[39499] "fireball"  "triangle"  "oval"      "other"     "circle"    "fireball" 
[39505] "formation" "formation" "fireball"  "cross"     "changing"  "unknown"  
[39511] "cigar"     "other"     "flash"     "triangle"  "formation" "light"    
[39517] "sphere"    "fireball"  "fireball"  "light"     "other"     "unknown"  
[39523] "sphere"    "light"     "circle"    "rectangle" "unknown"   "disk"     
[39529] "other"     "disk"      "sphere"    "disk"      "sphere"    "disk"     
[39535] "unknown"   "fireball"  "disk"      "triangle"  NA          "formation"
[39541] "sphere"    "egg"       "disk"      "triangle"  "other"     NA         
[39547] NA          NA          "other"     "other"     "disk"      "disk"     
[39553] "light"     "formation" "cigar"     "circle"    "circle"    "unknown"  
[39559] "triangle"  "triangle"  "light"     "other"     "triangle"  "light"    
[39565] "oval"      "unknown"   "chevron"   "other"     NA          "unknown"  
[39571] "diamond"   "triangle"  "light"     "other"     "changing"  "formation"
[39577] "sphere"    "light"     "light"     "teardrop"  "cigar"     "flash"    
[39583] "cigar"     "triangle"  "light"     "flash"     "triangle"  "light"    
[39589] "cigar"     "other"     "other"     "cigar"     "disk"      "circle"   
[39595] "light"     "chevron"   NA          "sphere"    "unknown"   "oval"     
[39601] NA          "disk"      "oval"      "other"     "light"     "light"    
[39607] "sphere"    "light"     "chevron"   "changing"  "circle"    "circle"   
[39613] "oval"      "triangle"  NA          "fireball"  "triangle"  "disk"     
[39619] "formation" "unknown"   "triangle"  "cigar"     "light"     "light"    
[39625] "sphere"    "unknown"   "chevron"   "light"     "sphere"    "light"    
[39631] "triangle"  "formation" "circle"    "other"     "light"     "circle"   
[39637] "triangle"  "light"     "light"     "light"     "light"     "other"    
[39643] "rectangle" "triangle"  "disk"      "other"     "sphere"    NA         
[39649] "circle"    "light"     "circle"    "sphere"    "triangle"  "light"    
[39655] "teardrop"  "circle"    "cone"      "disk"      "oval"      "disk"     
[39661] "cross"     "unknown"   "sphere"    "oval"      "chevron"   "light"    
[39667] "unknown"   NA          "triangle"  NA          "oval"      "fireball" 
[39673] "formation" "triangle"  "oval"      "chevron"   "sphere"    NA         
[39679] "rectangle" "fireball"  "light"     "flash"     "light"     "other"    
[39685] "sphere"    "sphere"    "circle"    "oval"      "sphere"    "sphere"   
[39691] "light"     "diamond"   "light"     "triangle"  "diamond"   "light"    
[39697] "light"     "light"     "unknown"   "unknown"   "fireball"  "fireball" 
[39703] "triangle"  "circle"    "sphere"    "unknown"   "circle"    "light"    
[39709] "triangle"  "unknown"   "fireball"  "triangle"  "light"     "sphere"   
[39715] "sphere"    "cylinder"  "rectangle" "sphere"    "rectangle" "triangle" 
[39721] "flash"     "other"     "sphere"    "disk"      "sphere"    "triangle" 
[39727] "triangle"  "flash"     "oval"      "sphere"    "circle"    "circle"   
[39733] "light"     "light"     "circle"    "disk"      "circle"    "disk"     
[39739] NA          "light"     "disk"      "cigar"     "triangle"  "disk"     
[39745] "triangle"  "cylinder"  NA          "light"     "disk"      "circle"   
[39751] "light"     "fireball"  "other"     "cross"     "other"     "light"    
[39757] "unknown"   "chevron"   "light"     "teardrop"  "disk"      "circle"   
[39763] "unknown"   "light"     "oval"      "disk"      NA          "other"    
[39769] "light"     "changing"  "cigar"     "unknown"   "unknown"   "unknown"  
[39775] "oval"      "egg"       "disk"      "triangle"  "cylinder"  "light"    
[39781] "formation" "cigar"     "changing"  "light"     "diamond"   "formation"
[39787] "light"     "light"     "changing"  "unknown"   "other"     "light"    
[39793] NA          "light"     "circle"    "changing"  "chevron"   "light"    
[39799] "disk"      "disk"      "disk"      "circle"    "oval"      "cylinder" 
[39805] "light"     "light"     "fireball"  "circle"    "formation" "oval"     
[39811] "light"     "triangle"  "oval"      "formation" "other"     "changing" 
[39817] "egg"       "oval"      "formation" "chevron"   "circle"    "other"    
[39823] "unknown"   "cylinder"  "light"     "changing"  "light"     "sphere"   
[39829] "disk"      "teardrop"  "circle"    "flash"     "light"     "light"    
[39835] "other"     "disk"      "other"     "sphere"    "triangle"  "light"    
[39841] "triangle"  "oval"      "fireball"  "triangle"  "changing"  "light"    
[39847] "sphere"    "circle"    "triangle"  "light"     "light"     "circle"   
[39853] "light"     "light"     NA          "light"     "triangle"  "sphere"   
[39859] "circle"    "other"     "unknown"   "light"     "fireball"  "sphere"   
[39865] "light"     "triangle"  "other"     "sphere"    "light"     "light"    
[39871] "light"     "light"     "light"     "chevron"   "sphere"    "other"    
[39877] "sphere"    "light"     "circle"    "triangle"  "triangle"  "light"    
[39883] "chevron"   "circle"    "light"     "cone"      "sphere"    "light"    
[39889] "triangle"  "triangle"  "fireball"  "light"     NA          "sphere"   
[39895] "flash"     "sphere"    "circle"    "light"     "light"     "other"    
[39901] "sphere"    "flash"     "circle"    "sphere"    "fireball"  "oval"     
[39907] "light"     "disk"      "circle"    "other"     "circle"    "triangle" 
[39913] "triangle"  "triangle"  "triangle"  "fireball"  "light"     "circle"   
[39919] "changing"  "light"     NA          "disk"      "chevron"   "sphere"   
[39925] "disk"      "sphere"    "other"     "light"     "triangle"  NA         
[39931] "disk"      "disk"      "triangle"  "disk"      "circle"    "disk"     
[39937] "light"     "disk"      NA          "oval"      "light"     "unknown"  
[39943] "light"     "other"     "circle"    "cigar"     "cigar"     "disk"     
[39949] "disk"      "disk"      "changing"  "circle"    "cigar"     "light"    
[39955] "cigar"     "disk"      "circle"    "light"     "circle"    "cylinder" 
[39961] "disk"      "rectangle" "triangle"  "changing"  "other"     "disk"     
[39967] "disk"      NA          "changing"  "other"     "triangle"  "sphere"   
[39973] "triangle"  "unknown"   "disk"      "fireball"  "changing"  "triangle" 
[39979] "light"     "light"     "disk"      "light"     "light"     "formation"
[39985] "oval"      "sphere"    "rectangle" "other"     "formation" "unknown"  
[39991] "fireball"  "disk"      "disk"      "light"     NA          "other"    
[39997] "light"     NA          "unknown"   "triangle"  "light"     "formation"
[40003] "unknown"   "unknown"   "fireball"  "disk"      "triangle"  NA         
[40009] "other"     "cigar"     "other"     "triangle"  "light"     "disk"     
[40015] "triangle"  "unknown"   "unknown"   "sphere"    "unknown"   NA         
[40021] "circle"    "circle"    "sphere"    "triangle"  "light"     "circle"   
[40027] "flash"     "sphere"    "rectangle" "formation" "circle"    "other"    
[40033] "light"     "sphere"    "formation" "disk"      "sphere"    "formation"
[40039] "light"     NA          "circle"    NA          "light"     "disk"     
[40045] "unknown"   "disk"      NA          NA          "changing"  "light"    
[40051] "triangle"  "oval"      "triangle"  "light"     "sphere"    "sphere"   
[40057] "triangle"  "sphere"    "rectangle" "light"     "circle"    "rectangle"
[40063] "light"     "rectangle" "oval"      "fireball"  "rectangle" "changing" 
[40069] "light"     "cylinder"  "oval"      "triangle"  "triangle"  "light"    
[40075] "disk"      "other"     "cigar"     "disk"      "other"     "sphere"   
[40081] "egg"       "light"     "cigar"     "light"     "formation" "chevron"  
[40087] "light"     "unknown"   "light"     "circle"    "disk"      "light"    
[40093] "light"     "oval"      "sphere"    "circle"    "formation" "sphere"   
[40099] "chevron"   "light"     "triangle"  "circle"    "light"     "fireball" 
[40105] "light"     "teardrop"  "oval"      "light"     "diamond"   "sphere"   
[40111] "light"     "flash"     "circle"    "triangle"  "triangle"  "light"    
[40117] "light"     "fireball"  "unknown"   "unknown"   "disk"      "triangle" 
[40123] "light"     "circle"    "oval"      "light"     "oval"      "circle"   
[40129] "triangle"  "light"     "triangle"  "other"     "light"     "light"    
[40135] "cigar"     "circle"    "triangle"  "disk"      "triangle"  "fireball" 
[40141] "sphere"    "triangle"  "unknown"   "formation" NA          "triangle" 
[40147] "disk"      "changing"  "formation" "triangle"  "light"     "other"    
[40153] "circle"    "other"     "other"     "fireball"  "other"     "cigar"    
[40159] "other"     "oval"      "egg"       "light"     "light"     "triangle" 
[40165] "light"     "other"     "disk"      "unknown"   "triangle"  "rectangle"
[40171] "sphere"    "triangle"  "sphere"    "circle"    "disk"      "other"    
[40177] "circle"    "triangle"  "oval"      "circle"    "unknown"   "oval"     
[40183] "sphere"    "sphere"    "light"     "light"     "sphere"    "fireball" 
[40189] "circle"    "chevron"   "formation" "light"     "changing"  "formation"
[40195] "light"     "light"     "fireball"  "triangle"  "light"     "light"    
[40201] "light"     "triangle"  "light"     "circle"    "circle"    "other"    
[40207] "oval"      "changing"  "circle"    "diamond"   "triangle"  "fireball" 
[40213] "light"     "other"     "light"     "triangle"  "fireball"  "unknown"  
[40219] "light"     "unknown"   "disk"      "unknown"   "cylinder"  "triangle" 
[40225] "chevron"   "changing"  "other"     "other"     "disk"      "disk"     
[40231] "oval"      "circle"    "circle"    NA          "diamond"   NA         
[40237] NA          NA          NA          NA          "formation" "light"    
[40243] "unknown"   "oval"      "light"     "triangle"  "unknown"   "triangle" 
[40249] "light"     "light"     "light"     "light"     "circle"    "light"    
[40255] "unknown"   "circle"    "fireball"  "light"     "triangle"  "light"    
[40261] "fireball"  "triangle"  "light"     NA          "light"     "circle"   
[40267] "light"     "disk"      "circle"    "disk"      "sphere"    "light"    
[40273] "light"     "circle"    "formation" "oval"      "other"     "chevron"  
[40279] "rectangle" "light"     "triangle"  "triangle"  "light"     "disk"     
[40285] "unknown"   "triangle"  "oval"      "triangle"  "triangle"  "disk"     
[40291] "oval"      "triangle"  "light"     "sphere"    NA          "light"    
[40297] "formation" "triangle"  "triangle"  "light"     "changing"  "sphere"   
[40303] "unknown"   "rectangle" "light"     "triangle"  "formation" "triangle" 
[40309] "light"     "light"     "light"     "flash"     "circle"    "egg"      
[40315] "disk"      "light"     "light"     "triangle"  "other"     "light"    
[40321] "light"     "unknown"   "light"     "light"     "light"     "unknown"  
[40327] "sphere"    "light"     "chevron"   "circle"    "fireball"  "sphere"   
[40333] "triangle"  "circle"    "sphere"    "teardrop"  "cylinder"  "teardrop" 
[40339] "circle"    "cigar"     "triangle"  "circle"    "triangle"  "light"    
[40345] NA          "sphere"    "sphere"    "cylinder"  "disk"      "unknown"  
[40351] "light"     "light"     "unknown"   "triangle"  "sphere"    "light"    
[40357] "cylinder"  "chevron"   "formation" "unknown"   "other"     "unknown"  
[40363] "fireball"  "circle"    "light"     "changing"  "circle"    "oval"     
[40369] "sphere"    "triangle"  "light"     "sphere"    "fireball"  "triangle" 
[40375] "circle"    "fireball"  "other"     "cone"      "light"     "formation"
[40381] "triangle"  "circle"    "circle"    "oval"      "chevron"   "light"    
[40387] "other"     "other"     "light"     "other"     "unknown"   NA         
[40393] NA          "light"     "unknown"   "oval"      "light"     NA         
[40399] "fireball"  "fireball"  "fireball"  "other"     "oval"      "fireball" 
[40405] "sphere"    "fireball"  "oval"      "light"     "circle"    "disk"     
[40411] "fireball"  "circle"    "cigar"     NA          "oval"      "circle"   
[40417] "flash"     "light"     "cigar"     "light"     "disk"      "circle"   
[40423] "cigar"     NA          "light"     NA          NA          NA         
[40429] NA          NA          "light"     "other"     "triangle"  "sphere"   
[40435] "disk"      "oval"      "light"     "light"     "other"     "sphere"   
[40441] "triangle"  "unknown"   "unknown"   "disk"      "unknown"   "sphere"   
[40447] "triangle"  "unknown"   "formation" "cigar"     "circle"    "light"    
[40453] "other"     "sphere"    "sphere"    "circle"    "sphere"    "other"    
[40459] "sphere"    "formation" "unknown"   "changing"  "changing"  "unknown"  
[40465] "other"     "other"     "cylinder"  "other"     "light"     "triangle" 
[40471] "unknown"   "unknown"   NA          "light"     "fireball"  NA         
[40477] "other"     "circle"    "light"     "cigar"     "changing"  "light"    
[40483] "light"     "light"     "unknown"   "sphere"    "cigar"     "light"    
[40489] "light"     "other"     "triangle"  "light"     "other"     "triangle" 
[40495] "flash"     "light"     NA          "light"     "disk"      "sphere"   
[40501] "rectangle" "oval"      "disk"      "unknown"   "light"     "other"    
[40507] "oval"      "disk"      "formation" "light"     "changing"  "light"    
[40513] "sphere"    "other"     "fireball"  "light"     "triangle"  "light"    
[40519] "cigar"     "cigar"     "triangle"  "circle"    "other"     "cigar"    
[40525] "sphere"    "unknown"   "triangle"  NA          "fireball"  "sphere"   
[40531] "light"     "disk"      "oval"      "cigar"     "sphere"    "rectangle"
[40537] "light"     "oval"      NA          "oval"      "circle"    "fireball" 
[40543] "triangle"  "sphere"    "light"     "unknown"   "formation" "light"    
[40549] "rectangle" "changing"  "other"     "fireball"  "light"     "light"    
[40555] "light"     "oval"      "light"     "oval"      "light"     "sphere"   
[40561] "light"     "fireball"  "other"     "light"     "fireball"  "formation"
[40567] NA          "fireball"  "sphere"    "unknown"   "disk"      "formation"
[40573] "fireball"  "disk"      "sphere"    "triangle"  "unknown"   "light"    
[40579] "light"     "triangle"  "disk"      NA          "other"     "unknown"  
[40585] "cigar"     "disk"      "formation" "unknown"   "sphere"    "disk"     
[40591] "other"     "other"     "circle"    "other"     "sphere"    "disk"     
[40597] NA          NA          NA          NA          NA          NA         
[40603] NA          NA          NA          NA          "other"     NA         
[40609] NA          "triangle"  "oval"      "light"     "changing"  "other"    
[40615] "light"     "oval"      "chevron"   "light"     "circle"    "fireball" 
[40621] "formation" "sphere"    "fireball"  "triangle"  "oval"      "unknown"  
[40627] "disk"      "disk"      NA          "fireball"  "oval"      "circle"   
[40633] "disk"      "triangle"  "oval"      "circle"    "changing"  "light"    
[40639] "other"     NA          "formation" "unknown"   "oval"      "oval"     
[40645] "light"     "triangle"  NA          "triangle"  "triangle"  "triangle" 
[40651] "light"     "triangle"  "rectangle" "rectangle" "light"     "oval"     
[40657] "disk"      "fireball"  "egg"       "unknown"   "triangle"  "light"    
[40663] "circle"    "light"     "triangle"  "triangle"  "changing"  "changing" 
[40669] "cigar"     "light"     "disk"      "light"     "sphere"    "teardrop" 
[40675] "sphere"    "other"     "light"     "egg"       "light"     "triangle" 
[40681] "rectangle" "sphere"    "sphere"    "flash"     "triangle"  "circle"   
[40687] "unknown"   "light"     "triangle"  "light"     "light"     "oval"     
[40693] "unknown"   "triangle"  "oval"      "fireball"  "fireball"  "cigar"    
[40699] "changing"  "sphere"    "other"     "light"     "circle"    "teardrop" 
[40705] "light"     "sphere"    "unknown"   "formation" "rectangle" "oval"     
[40711] "unknown"   "triangle"  "oval"      "cylinder"  "changing"  "fireball" 
[40717] "sphere"    "light"     "other"     "light"     "diamond"   "fireball" 
[40723] "changing"  "circle"    "other"     "sphere"    "fireball"  "circle"   
[40729] "fireball"  "flash"     "fireball"  "circle"    "fireball"  "unknown"  
[40735] "fireball"  "light"     "oval"      "light"     "light"     "triangle" 
[40741] "sphere"    "oval"      "unknown"   "other"     "disk"      "fireball" 
[40747] "triangle"  "triangle"  "light"     "light"     "chevron"   "fireball" 
[40753] "fireball"  "unknown"   "changing"  "fireball"  "cylinder"  "chevron"  
[40759] "triangle"  "unknown"   "sphere"    "light"     "unknown"   "circle"   
[40765] "sphere"    "circle"    "light"     "circle"    "cone"      "circle"   
[40771] "oval"      "circle"    "fireball"  "triangle"  "light"     "light"    
[40777] "sphere"    "circle"    "light"     "unknown"   "light"     "other"    
[40783] "fireball"  "light"     "sphere"    "unknown"   "circle"    "unknown"  
[40789] "formation" "light"     "unknown"   "cylinder"  "light"     "other"    
[40795] "cylinder"  "light"     "other"     "light"     "sphere"    "light"    
[40801] "rectangle" "other"     "light"     "unknown"   "circle"    "triangle" 
[40807] "formation" "rectangle" "changing"  "cylinder"  "disk"      "other"    
[40813] "triangle"  "disk"      "disk"      "disk"      "disk"      "triangle" 
[40819] "fireball"  "fireball"  "disk"      "circle"    NA          "disk"     
[40825] "other"     "light"     "disk"      "disk"      "disk"      "oval"     
[40831] NA          "chevron"   "other"     "formation" "oval"      "sphere"   
[40837] "circle"    "light"     "light"     "unknown"   "egg"       "circle"   
[40843] "disk"      "circle"    "cigar"     "oval"      "light"     "oval"     
[40849] "sphere"    "circle"    "sphere"    "disk"      "sphere"    "light"    
[40855] "disk"      "sphere"    "light"     "teardrop"  "rectangle" "disk"     
[40861] "cigar"     "cigar"     "cigar"     "oval"      "unknown"   "other"    
[40867] "disk"      "sphere"    "other"     "rectangle" "formation" "triangle" 
[40873] "circle"    "sphere"    "sphere"    "oval"      "triangle"  "changing" 
[40879] "cigar"     "circle"    "disk"      "disk"      "triangle"  "triangle" 
[40885] "disk"      "other"     "other"     "disk"      "light"     "other"    
[40891] "sphere"    "sphere"    "disk"      "disk"      "other"     "rectangle"
[40897] "light"     "other"     "other"     "light"     "triangle"  "diamond"  
[40903] "oval"      "circle"    "light"     "disk"      "egg"       "fireball" 
[40909] "unknown"   "circle"    "disk"      "other"     "chevron"   "rectangle"
[40915] "other"     NA          "triangle"  "unknown"   "triangle"  "circle"   
[40921] "circle"    NA          "sphere"    "fireball"  NA          NA         
[40927] NA          "light"     "fireball"  "chevron"   NA          "light"    
[40933] "other"     "fireball"  "triangle"  "cylinder"  "other"     "changing" 
[40939] "fireball"  "diamond"   "unknown"   "light"     "unknown"   "egg"      
[40945] "unknown"   "sphere"    "light"     "formation" "light"     "disk"     
[40951] "fireball"  "triangle"  "other"     "sphere"    "light"     "cylinder" 
[40957] "disk"      "sphere"    "fireball"  "sphere"    "disk"      "disk"     
[40963] "circle"    "unknown"   "light"     "light"     "light"     "oval"     
[40969] "light"     "light"     "sphere"    "oval"      "other"     "disk"     
[40975] "other"     "disk"      "rectangle" "light"     "diamond"   "light"    
[40981] "oval"      "fireball"  "sphere"    "light"     "changing"  "disk"     
[40987] "unknown"   "disk"      "formation" "rectangle" "formation" "triangle" 
[40993] "sphere"    "sphere"    "sphere"    "diamond"   "circle"    "circle"   
[40999] "triangle"  "light"     "sphere"    "light"     "oval"      "sphere"   
[41005] "fireball"  "fireball"  NA          "triangle"  "unknown"   "light"    
[41011] NA          "light"     "light"     "other"     "triangle"  NA         
[41017] NA          "other"     "light"     "egg"       "light"     "unknown"  
[41023] "diamond"   "disk"      "fireball"  "diamond"   "egg"       "oval"     
[41029] "light"     "unknown"   "flash"     "other"     "other"     "light"    
[41035] "other"     "cylinder"  "cylinder"  "cylinder"  "disk"      "teardrop" 
[41041] "sphere"    "formation" "cigar"     "unknown"   "light"     "sphere"   
[41047] "light"     "light"     "triangle"  "fireball"  "fireball"  "other"    
[41053] "light"     "cylinder"  "light"     "light"     "cross"     "light"    
[41059] "light"     "circle"    "cigar"     "diamond"   "triangle"  "disk"     
[41065] "triangle"  "chevron"   "unknown"   "circle"    "other"     "light"    
[41071] "circle"    "triangle"  "fireball"  "oval"      "oval"      "unknown"  
[41077] "oval"      "triangle"  "triangle"  "cigar"     "formation" "sphere"   
[41083] "cylinder"  "unknown"   "circle"    "triangle"  "light"     "changing" 
[41089] "formation" "fireball"  "unknown"   "light"     "fireball"  "cigar"    
[41095] "other"     "rectangle" "triangle"  "triangle"  "light"     "circle"   
[41101] "unknown"   "unknown"   "diamond"   "circle"    "unknown"   "changing" 
[41107] "unknown"   "egg"       "changing"  "changing"  "rectangle" "unknown"  
[41113] "formation" "diamond"   "sphere"    "fireball"  "diamond"   "light"    
[41119] "unknown"   "fireball"  "sphere"    "triangle"  "unknown"   "triangle" 
[41125] "cross"     "circle"    "egg"       "disk"      "sphere"    "cylinder" 
[41131] "diamond"   "triangle"  "light"     "sphere"    "triangle"  "light"    
[41137] "unknown"   "circle"    "circle"    "circle"    "light"     "triangle" 
[41143] "fireball"  "chevron"   "light"     "disk"      "changing"  "oval"     
[41149] "light"     "disk"      "fireball"  "formation" "circle"    "circle"   
[41155] "changing"  "fireball"  "other"     "circle"    "oval"      "unknown"  
[41161] "triangle"  "light"     "other"     "cross"     "circle"    "sphere"   
[41167] "sphere"    "sphere"    "light"     "circle"    "rectangle" "light"    
[41173] "disk"      "diamond"   "light"     "sphere"    "cylinder"  "fireball" 
[41179] "triangle"  "circle"    "cylinder"  "sphere"    "unknown"   "light"    
[41185] "circle"    "chevron"   "light"     "formation" "triangle"  "light"    
[41191] "unknown"   "cylinder"  "formation" "light"     "fireball"  "sphere"   
[41197] "circle"    "formation" "egg"       "chevron"   "cylinder"  "rectangle"
[41203] "light"     "light"     "circle"    "oval"      "oval"      "light"    
[41209] "circle"    "disk"      "other"     "disk"      "other"     "disk"     
[41215] "disk"      "unknown"   NA          "oval"      NA          NA         
[41221] NA          NA          NA          "sphere"    "disk"      "fireball" 
[41227] "other"     "sphere"    "disk"      "light"     "circle"    "other"    
[41233] "light"     "rectangle" "disk"      "cylinder"  "unknown"   "fireball" 
[41239] "oval"      "disk"      "disk"      "other"     "sphere"    "triangle" 
[41245] "oval"      "changing"  "changing"  "circle"    "circle"    "cylinder" 
[41251] "disk"      "disk"      "triangle"  "disk"      "sphere"    "circle"   
[41257] "circle"    "other"     "light"     "flash"     "changing"  "sphere"   
[41263] "unknown"   "changing"  "sphere"    "disk"      "cylinder"  "unknown"  
[41269] "oval"      "circle"    "light"     "light"     "light"     "fireball" 
[41275] "light"     "triangle"  "fireball"  "circle"    "sphere"    "triangle" 
[41281] "circle"    "cigar"     "unknown"   "oval"      "light"     "other"    
[41287] "triangle"  "light"     "circle"    "flash"     "formation" "other"    
[41293] "changing"  "light"     "disk"      "circle"    "triangle"  "light"    
[41299] "teardrop"  "other"     "disk"      "fireball"  "circle"    "triangle" 
[41305] "fireball"  "diamond"   "disk"      "triangle"  "unknown"   "other"    
[41311] "disk"      "formation" NA          "triangle"  "fireball"  "cigar"    
[41317] NA          "triangle"  "unknown"   "light"     "light"     "circle"   
[41323] "unknown"   "unknown"   "light"     "light"     "cigar"     "triangle" 
[41329] "flash"     "cylinder"  "disk"      "cylinder"  "light"     "triangle" 
[41335] "other"     "light"     "formation" "circle"    "other"     "other"    
[41341] "triangle"  "triangle"  "triangle"  "unknown"   "formation" "formation"
[41347] NA          "light"     "oval"      "disk"      "light"     NA         
[41353] "light"     "light"     "triangle"  "sphere"    "cross"     "unknown"  
[41359] "cylinder"  "disk"      "sphere"    "cylinder"  "unknown"   "sphere"   
[41365] "cigar"     "unknown"   "other"     "changing"  "light"     "light"    
[41371] "rectangle" "triangle"  "triangle"  "triangle"  "disk"      "formation"
[41377] "light"     "disk"      "other"     "other"     "light"     "triangle" 
[41383] "circle"    "circle"    "triangle"  "formation" "sphere"    "light"    
[41389] "unknown"   "other"     "rectangle" "cigar"     "rectangle" "oval"     
[41395] "rectangle" "disk"      "circle"    "light"     "light"     "flash"    
[41401] "triangle"  "changing"  "circle"    "formation" "light"     "flash"    
[41407] "other"     "flash"     "unknown"   "changing"  "unknown"   "light"    
[41413] "circle"    "triangle"  "light"     "light"     NA          "circle"   
[41419] "cross"     "fireball"  "circle"    "cigar"     "light"     "light"    
[41425] "circle"    "fireball"  "fireball"  "cross"     "other"     "unknown"  
[41431] "light"     "diamond"   "unknown"   "sphere"    "sphere"    "unknown"  
[41437] "unknown"   "chevron"   "triangle"  "changing"  "sphere"    "oval"     
[41443] "oval"      "oval"      "other"     "disk"      "rectangle" "formation"
[41449] "oval"      "disk"      "triangle"  "disk"      "oval"      NA         
[41455] NA          "light"     "light"     "fireball"  "triangle"  "circle"   
[41461] "triangle"  "oval"      "triangle"  "triangle"  "cone"      "cigar"    
[41467] "sphere"    "light"     "cylinder"  "fireball"  "fireball"  "light"    
[41473] "unknown"   "sphere"    "cone"      "light"     "triangle"  "disk"     
[41479] "circle"    "unknown"   "light"     "unknown"   "cigar"     "light"    
[41485] "light"     "light"     "light"     "circle"    "light"     "disk"     
[41491] "light"     "light"     "oval"      "triangle"  "unknown"   "other"    
[41497] "cone"      "light"     "light"     "light"     "light"     "unknown"  
[41503] "unknown"   "disk"      "oval"      "oval"      "disk"      "light"    
[41509] "diamond"   "other"     "circle"    "egg"       "other"     "oval"     
[41515] "cigar"     "unknown"   "circle"    "light"     "circle"    "circle"   
[41521] NA          "unknown"   "oval"      "formation" "light"     "oval"     
[41527] "circle"    "light"     "teardrop"  "circle"    "formation" "circle"   
[41533] "unknown"   "disk"      "circle"    "other"     "teardrop"  "circle"   
[41539] "circle"    "diamond"   "unknown"   "light"     "triangle"  "fireball" 
[41545] "teardrop"  "circle"    "triangle"  "oval"      "disk"      "diamond"  
[41551] "changing"  "triangle"  "formation" "triangle"  "light"     "light"    
[41557] "triangle"  "triangle"  "oval"      "circle"    "sphere"    "unknown"  
[41563] "disk"      "light"     "triangle"  "triangle"  "triangle"  "triangle" 
[41569] "light"     "light"     "circle"    "light"     "flash"     "light"    
[41575] "circle"    "rectangle" "unknown"   "light"     "oval"      "circle"   
[41581] "light"     "fireball"  "light"     "oval"      "cross"     "diamond"  
[41587] "disk"      "triangle"  "disk"      "circle"    "oval"      "sphere"   
[41593] "light"     "circle"    "unknown"   "formation" "light"     "light"    
[41599] "flash"     "circle"    "circle"    "fireball"  "rectangle" "cylinder" 
[41605] "oval"      "light"     "sphere"    "triangle"  "circle"    "rectangle"
[41611] "triangle"  "circle"    "flash"     "light"     "light"     "light"    
[41617] "light"     "disk"      "diamond"   "changing"  "circle"    "disk"     
[41623] "sphere"    "triangle"  "unknown"   "diamond"   "disk"      "circle"   
[41629] "circle"    "circle"    "light"     "oval"      "sphere"    "circle"   
[41635] "diamond"   "light"     "cylinder"  "triangle"  "triangle"  "unknown"  
[41641] "triangle"  "light"     "light"     "disk"      "oval"      "sphere"   
[41647] "formation" NA          NA          NA          NA          "diamond"  
[41653] "triangle"  "triangle"  "changing"  "triangle"  "changing"  "other"    
[41659] "chevron"   "light"     "light"     "other"     "disk"      "cylinder" 
[41665] "cylinder"  "circle"    "triangle"  "chevron"   "oval"      "circle"   
[41671] "disk"      "light"     "fireball"  "fireball"  "light"     "circle"   
[41677] "circle"    "light"     "light"     "disk"      "light"     "chevron"  
[41683] "formation" "triangle"  "unknown"   "cylinder"  "oval"      "disk"     
[41689] "triangle"  "other"     "triangle"  "unknown"   "cigar"     "oval"     
[41695] "light"     "sphere"    "oval"      "formation" "disk"      "light"    
[41701] "triangle"  "light"     "unknown"   "oval"      "sphere"    "disk"     
[41707] "triangle"  "rectangle" "light"     "unknown"   "sphere"    "sphere"   
[41713] "triangle"  "light"     "other"     "light"     "diamond"   "triangle" 
[41719] "other"     "sphere"    "circle"    "light"     "triangle"  "light"    
[41725] "rectangle" "other"     "cylinder"  "light"     "light"     "disk"     
[41731] "other"     "disk"      "light"     "light"     NA          NA         
[41737] "triangle"  "rectangle" "unknown"   "triangle"  "other"     "oval"     
[41743] "flash"     "chevron"   "unknown"   "light"     "triangle"  NA         
[41749] "fireball"  "diamond"   NA          "oval"      "formation" "light"    
[41755] "triangle"  "triangle"  "other"     "rectangle" "unknown"   "changing" 
[41761] "formation" "sphere"    "light"     "fireball"  "light"     "diamond"  
[41767] "oval"      "unknown"   "triangle"  "oval"      "circle"    "circle"   
[41773] "other"     "light"     "cylinder"  "sphere"    "light"     "cigar"    
[41779] "unknown"   "light"     "formation" "triangle"  "light"     "light"    
[41785] "sphere"    "light"     "other"     "oval"      "fireball"  "other"    
[41791] "diamond"   "circle"    "unknown"   "oval"      "formation" "egg"      
[41797] "light"     "circle"    "other"     "light"     "light"     "circle"   
[41803] "circle"    "formation" "formation" "sphere"    "unknown"   "fireball" 
[41809] "light"     "light"     "light"     "cylinder"  "light"     "light"    
[41815] "disk"      "disk"      "light"     "fireball"  "changing"  "oval"     
[41821] "disk"      "oval"      "cigar"     "other"     "disk"      NA         
[41827] NA          NA          NA          NA          NA          "light"    
[41833] "light"     "other"     "circle"    "other"     "circle"    "unknown"  
[41839] "disk"      "oval"      "other"     "triangle"  "light"     "disk"     
[41845] "egg"       "light"     "disk"      "chevron"   "other"     "triangle" 
[41851] "other"     "light"     "diamond"   "light"     "unknown"   "sphere"   
[41857] "egg"       "circle"    "triangle"  "triangle"  "unknown"   "light"    
[41863] "sphere"    "triangle"  "circle"    "formation" "sphere"    "triangle" 
[41869] "triangle"  "light"     "fireball"  "sphere"    "egg"       "fireball" 
[41875] "circle"    "light"     "changing"  "disk"      "cylinder"  "disk"     
[41881] "other"     "fireball"  "diamond"   "light"     "unknown"   "triangle" 
[41887] "light"     "light"     "light"     "other"     "sphere"    "cone"     
[41893] "disk"      "disk"      "unknown"   "light"     "light"     "other"    
[41899] "triangle"  "other"     "light"     "light"     "light"     "light"    
[41905] "light"     "triangle"  "formation" "light"     "fireball"  "triangle" 
[41911] "oval"      "light"     "other"     "formation" "light"     "light"    
[41917] "fireball"  "fireball"  "triangle"  "cigar"     "disk"      "rectangle"
[41923] "oval"      "changing"  "rectangle" "disk"      "triangle"  "diamond"  
[41929] "other"     "cigar"     "flash"     "oval"      "light"     "triangle" 
[41935] "fireball"  "fireball"  "circle"    "unknown"   "circle"    "unknown"  
[41941] "light"     "light"     "changing"  "triangle"  "triangle"  "unknown"  
[41947] "other"     "light"     "light"     "other"     "triangle"  "cylinder" 
[41953] "fireball"  "triangle"  "cigar"     "flash"     "changing"  "triangle" 
[41959] "light"     "light"     "triangle"  "teardrop"  "rectangle" "circle"   
[41965] "light"     "light"     "unknown"   "light"     "circle"    "light"    
[41971] "chevron"   "light"     "circle"    "light"     "light"     "triangle" 
[41977] "other"     "unknown"   "sphere"    "other"     "light"     "sphere"   
[41983] "circle"    "sphere"    "egg"       "disk"      "disk"      NA         
[41989] "cylinder"  "other"     "sphere"    "other"     "fireball"  "other"    
[41995] "triangle"  "circle"    "oval"      "circle"    "unknown"   "sphere"   
[42001] "light"     "sphere"    "circle"    "flash"     "circle"    "light"    
[42007] "sphere"    "diamond"   "light"     "fireball"  "light"     "light"    
[42013] "disk"      "disk"      "disk"      "oval"      "changing"  "disk"     
[42019] "other"     "cigar"     "light"     "other"     "fireball"  "other"    
[42025] "light"     "other"     "sphere"    NA          NA          "triangle" 
[42031] NA          "triangle"  NA          "other"     NA          "formation"
[42037] "light"     "sphere"    NA          "light"     "sphere"    "circle"   
[42043] "other"     "triangle"  "light"     "other"     "fireball"  "fireball" 
[42049] "triangle"  "triangle"  "light"     "unknown"   "cigar"     "formation"
[42055] "fireball"  "triangle"  "light"     "light"     "egg"       "light"    
[42061] "circle"    "formation" "unknown"   "unknown"   "oval"      "cigar"    
[42067] "flash"     "fireball"  "changing"  "triangle"  "disk"      "rectangle"
[42073] "sphere"    "triangle"  "diamond"   "triangle"  "circle"    "light"    
[42079] "oval"      "triangle"  "diamond"   "triangle"  "unknown"   "triangle" 
[42085] "sphere"    "triangle"  "fireball"  "light"     "formation" NA         
[42091] "unknown"   "rectangle" "circle"    "unknown"   "disk"      "unknown"  
[42097] "triangle"  "light"     "circle"    "light"     "chevron"   "triangle" 
[42103] "sphere"    "triangle"  "light"     "triangle"  "disk"      "triangle" 
[42109] "formation" "fireball"  "other"     "disk"      "circle"    "circle"   
[42115] "light"     "triangle"  "other"     "cigar"     "fireball"  "light"    
[42121] "light"     "circle"    "cylinder"  "triangle"  "light"     "teardrop" 
[42127] "light"     "triangle"  "circle"    "circle"    "light"     "triangle" 
[42133] NA          "light"     "unknown"   "fireball"  "other"     "other"    
[42139] "sphere"    "light"     "fireball"  "circle"    NA          "triangle" 
[42145] "circle"    "sphere"    "circle"    "triangle"  "light"     "light"    
[42151] "cigar"     "cigar"     "light"     "diamond"   "light"     "light"    
[42157] "diamond"   "triangle"  "diamond"   "circle"    "disk"      "triangle" 
[42163] "formation" "rectangle" "other"     "circle"    "cigar"     "cylinder" 
[42169] "other"     "disk"      "egg"       "light"     "fireball"  "flash"    
[42175] "changing"  "light"     "circle"    "circle"    "other"     "sphere"   
[42181] "changing"  "circle"    "light"     "triangle"  "light"     "fireball" 
[42187] "triangle"  "light"     "disk"      "egg"       "disk"      "circle"   
[42193] "changing"  "light"     NA          "triangle"  "unknown"   "disk"     
[42199] "triangle"  "flash"     "light"     "unknown"   "cylinder"  "disk"     
[42205] "unknown"   "light"     "unknown"   "circle"    "chevron"   "light"    
[42211] "unknown"   "light"     "light"     "light"     "light"     "other"    
[42217] "oval"      "unknown"   "formation" "light"     "light"     "disk"     
[42223] "other"     "oval"      "sphere"    "other"     "sphere"    "changing" 
[42229] "triangle"  "light"     "light"     "light"     "fireball"  "sphere"   
[42235] "fireball"  "cone"      "disk"      "other"     "light"     "light"    
[42241] "fireball"  "cigar"     "sphere"    "light"     "light"     "cigar"    
[42247] "light"     "circle"    "circle"    "fireball"  "unknown"   "fireball" 
[42253] "circle"    "circle"    "triangle"  "circle"    "flash"     "circle"   
[42259] "light"     "rectangle" "unknown"   "changing"  "light"     "light"    
[42265] "formation" "light"     "cylinder"  "cylinder"  "flash"     "disk"     
[42271] NA          "circle"    "triangle"  "other"     "light"     "fireball" 
[42277] NA          NA          NA          NA          NA          NA         
[42283] "chevron"   "teardrop"  "fireball"  "other"     "light"     "circle"   
[42289] "fireball"  NA          "fireball"  "fireball"  "cylinder"  "disk"     
[42295] "triangle"  "other"     "light"     "oval"      "circle"    "circle"   
[42301] "triangle"  "triangle"  "changing"  "light"     "circle"    "other"    
[42307] "unknown"   "teardrop"  "other"     "other"     "fireball"  "triangle" 
[42313] "circle"    "flash"     "oval"      "light"     "other"     "light"    
[42319] "light"     "disk"      "sphere"    "light"     "other"     "light"    
[42325] "triangle"  "light"     "unknown"   "unknown"   "light"     "triangle" 
[42331] "unknown"   "chevron"   "circle"    "unknown"   "sphere"    "triangle" 
[42337] "light"     "triangle"  "unknown"   "chevron"   "oval"      "formation"
[42343] "formation" "disk"      "triangle"  "other"     "light"     "triangle" 
[42349] "oval"      "changing"  "egg"       "light"     "light"     "fireball" 
[42355] "disk"      "unknown"   "light"     "light"     "light"     "circle"   
[42361] "egg"       "other"     "unknown"   "unknown"   "unknown"   "egg"      
[42367] "oval"      "diamond"   "light"     "formation" "formation" "light"    
[42373] "formation" "teardrop"  "triangle"  "fireball"  "changing"  NA         
[42379] "oval"      "light"     "circle"    "triangle"  NA          "triangle" 
[42385] "circle"    "light"     "cylinder"  "triangle"  "sphere"    "triangle" 
[42391] "circle"    "teardrop"  "triangle"  "light"     "light"     "triangle" 
[42397] "light"     "sphere"    "light"     "light"     "rectangle" "unknown"  
[42403] "sphere"    "rectangle" "fireball"  "other"     "other"     "sphere"   
[42409] "triangle"  "light"     "triangle"  "sphere"    "fireball"  "disk"     
[42415] "light"     "fireball"  "light"     "sphere"    "sphere"    "oval"     
[42421] "light"     "circle"    "oval"      "triangle"  "fireball"  "triangle" 
[42427] "circle"    "circle"    "circle"    "sphere"    "unknown"   "light"    
[42433] "circle"    "circle"    "other"     "light"     "unknown"   "other"    
[42439] "fireball"  "oval"      "unknown"   "light"     "changing"  "diamond"  
[42445] "triangle"  "light"     "light"     "oval"      "light"     "light"    
[42451] "fireball"  "light"     "rectangle" "oval"      "disk"      "formation"
[42457] "circle"    "circle"    "light"     "circle"    "light"     "fireball" 
[42463] "changing"  "triangle"  "other"     "cigar"     "other"     "light"    
[42469] "light"     "triangle"  "unknown"   "disk"      "disk"      "disk"     
[42475] NA          "oval"      "cylinder"  "light"     NA          "diamond"  
[42481] NA          "other"     NA          "sphere"    "fireball"  "disk"     
[42487] "flash"     "other"     "other"     "sphere"    "triangle"  "egg"      
[42493] "triangle"  "unknown"   "oval"      "light"     "disk"      "light"    
[42499] "triangle"  "triangle"  "other"     "triangle"  "light"     "light"    
[42505] "triangle"  "unknown"   "light"     "circle"    "other"     "light"    
[42511] "light"     "disk"      "disk"      "cylinder"  "rectangle" "triangle" 
[42517] "light"     "sphere"    "disk"      "disk"      "circle"    "fireball" 
[42523] "unknown"   "light"     "light"     "triangle"  "unknown"   "flash"    
[42529] "diamond"   "sphere"    "light"     "changing"  "circle"    "circle"   
[42535] "triangle"  "flash"     "other"     "circle"    "light"     "formation"
[42541] "sphere"    "diamond"   "oval"      "formation" "oval"      "sphere"   
[42547] "circle"    NA          NA          "unknown"   "circle"    "disk"     
[42553] "cylinder"  "formation" "disk"      "triangle"  "flash"     "sphere"   
[42559] "unknown"   "light"     "triangle"  "triangle"  "light"     "other"    
[42565] "oval"      "other"     "unknown"   "cylinder"  "light"     "light"    
[42571] "triangle"  "unknown"   "triangle"  "light"     "formation" "formation"
[42577] "light"     "light"     "light"     "light"     "light"     "unknown"  
[42583] "unknown"   "circle"    NA          "triangle"  "cylinder"  "other"    
[42589] "triangle"  "cone"      "light"     "formation" "other"     "triangle" 
[42595] "fireball"  "cigar"     "cigar"     "fireball"  "disk"      "cigar"    
[42601] "oval"      "cigar"     "unknown"   "cross"     "light"     "unknown"  
[42607] "cigar"     "light"     "fireball"  "fireball"  "unknown"   "cone"     
[42613] "triangle"  NA          "triangle"  "other"     "oval"      "oval"     
[42619] "light"     NA          "light"     "disk"      "circle"    "light"    
[42625] "oval"      "other"     "triangle"  "triangle"  "oval"      "circle"   
[42631] "circle"    "unknown"   "fireball"  "fireball"  "triangle"  "disk"     
[42637] "circle"    "changing"  NA          "oval"      "sphere"    "flash"    
[42643] "cone"      NA          NA          NA          NA          NA         
[42649] NA          NA          NA          NA          "formation" "circle"   
[42655] NA          "egg"       "light"     "light"     "light"     "light"    
[42661] "fireball"  "sphere"    "oval"      "fireball"  "circle"    "disk"     
[42667] "light"     "light"     "light"     "circle"    "light"     "unknown"  
[42673] "fireball"  "light"     "unknown"   "circle"    "rectangle" "fireball" 
[42679] "triangle"  "light"     "unknown"   "cigar"     "changing"  "fireball" 
[42685] "triangle"  "disk"      "other"     "disk"      "sphere"    "circle"   
[42691] "triangle"  "circle"    "diamond"   "fireball"  "light"     "flash"    
[42697] "triangle"  "fireball"  "light"     "cigar"     "diamond"   "circle"   
[42703] "cigar"     "unknown"   "light"     "cigar"     "cigar"     "triangle" 
[42709] "light"     "triangle"  "rectangle" "light"     "other"     NA         
[42715] "disk"      "unknown"   "light"     "fireball"  "unknown"   "light"    
[42721] "triangle"  "fireball"  "light"     "light"     "disk"      "light"    
[42727] "disk"      "diamond"   "fireball"  "oval"      "cigar"     "diamond"  
[42733] "light"     "rectangle" "formation" "disk"      "triangle"  "changing" 
[42739] "triangle"  "rectangle" "triangle"  "triangle"  "egg"       "circle"   
[42745] "sphere"    "disk"      "other"     "cross"     "circle"    "unknown"  
[42751] "sphere"    "circle"    "triangle"  "fireball"  "egg"       "fireball" 
[42757] "light"     "light"     "changing"  "cigar"     "cigar"     "changing" 
[42763] "light"     "fireball"  "triangle"  "light"     "sphere"    "other"    
[42769] "circle"    "unknown"   "circle"    "chevron"   "cigar"     "light"    
[42775] "rectangle" "light"     "unknown"   "light"     "other"     "fireball" 
[42781] "other"     "light"     "triangle"  "chevron"   "oval"      "sphere"   
[42787] "formation" "light"     "fireball"  "fireball"  "rectangle" "sphere"   
[42793] "light"     "fireball"  "formation" "light"     "circle"    "sphere"   
[42799] "sphere"    "triangle"  "light"     "flash"     "fireball"  "other"    
[42805] "light"     "disk"      "circle"    "sphere"    "cigar"     "cigar"    
[42811] "triangle"  "fireball"  "circle"    "diamond"   "formation" "light"    
[42817] "light"     "other"     "diamond"   "triangle"  "light"     "triangle" 
[42823] "formation" "fireball"  "light"     "disk"      "fireball"  "rectangle"
[42829] "light"     "disk"      "triangle"  NA          "triangle"  "light"    
[42835] "circle"    "sphere"    "light"     "sphere"    "fireball"  "chevron"  
[42841] "light"     "disk"      "unknown"   "triangle"  "triangle"  "triangle" 
[42847] "cigar"     "cigar"     NA          "light"     NA          NA         
[42853] NA          "circle"    NA          "light"     NA          NA         
[42859] "oval"      "triangle"  "light"     "light"     "light"     "disk"     
[42865] "light"     "light"     "other"     "circle"    "triangle"  "triangle" 
[42871] "light"     "circle"    "light"     "disk"      "light"     "disk"     
[42877] "other"     "disk"      "circle"    "triangle"  "light"     "triangle" 
[42883] "flash"     "circle"    "light"     "disk"      "oval"      "changing" 
[42889] "changing"  "light"     "unknown"   NA          "fireball"  "disk"     
[42895] "other"     "sphere"    "light"     "formation" "circle"    "triangle" 
[42901] "cone"      "disk"      "light"     "unknown"   "light"     "circle"   
[42907] "chevron"   "other"     "disk"      "disk"      "fireball"  "light"    
[42913] "light"     "oval"      "light"     "light"     "unknown"   "fireball" 
[42919] "rectangle" "fireball"  "changing"  "triangle"  "other"     "disk"     
[42925] "unknown"   "sphere"    "triangle"  "circle"    "cigar"     "unknown"  
[42931] "circle"    "cigar"     "oval"      NA          "triangle"  "light"    
[42937] "changing"  "triangle"  "other"     "disk"      "sphere"    "disk"     
[42943] "triangle"  "cigar"     "cylinder"  "teardrop"  "fireball"  "unknown"  
[42949] "unknown"   "sphere"    "sphere"    "circle"    "sphere"    "disk"     
[42955] "unknown"   "circle"    "triangle"  "light"     "diamond"   "light"    
[42961] "triangle"  "sphere"    "triangle"  "other"     "sphere"    "formation"
[42967] "other"     "light"     "unknown"   "light"     "cigar"     "circle"   
[42973] "oval"      "light"     "triangle"  "oval"      "light"     "rectangle"
[42979] "changing"  "light"     "rectangle" "rectangle" "unknown"   "unknown"  
[42985] "light"     "diamond"   "other"     "cigar"     "circle"    "flash"    
[42991] "other"     "circle"    "triangle"  "triangle"  NA          NA         
[42997] "light"     "cylinder"  "light"     "light"     "light"     "chevron"  
[43003] "light"     "light"     "triangle"  "fireball"  "triangle"  "circle"   
[43009] "sphere"    "triangle"  "triangle"  "circle"    "circle"    "disk"     
[43015] "triangle"  "light"     "unknown"   "circle"    "light"     "formation"
[43021] "unknown"   "triangle"  "circle"    "chevron"   "triangle"  "sphere"   
[43027] "unknown"   "changing"  "disk"      "sphere"    NA          NA         
[43033] "light"     "sphere"    "triangle"  NA          "fireball"  "formation"
[43039] "triangle"  "circle"    "teardrop"  "teardrop"  "disk"      "unknown"  
[43045] "chevron"   "light"     "other"     "light"     "triangle"  "triangle" 
[43051] "sphere"    "fireball"  "diamond"   "circle"    "egg"       "light"    
[43057] "unknown"   "egg"       "changing"  "oval"      "other"     "unknown"  
[43063] "chevron"   NA          NA          "disk"      "triangle"  "light"    
[43069] "diamond"   "sphere"    "sphere"    "light"     "light"     "light"    
[43075] "fireball"  "fireball"  "other"     "light"     "triangle"  "sphere"   
[43081] "unknown"   "triangle"  "formation" NA          "light"     "teardrop" 
[43087] "cylinder"  "triangle"  "circle"    "cylinder"  "light"     "cigar"    
[43093] "light"     "other"     "circle"    "fireball"  "changing"  "oval"     
[43099] "cone"      "cigar"     NA          "triangle"  "unknown"   "changing" 
[43105] "teardrop"  "unknown"   "cigar"     "light"     "light"     "light"    
[43111] "light"     "other"     "unknown"   "fireball"  "light"     "light"    
[43117] "circle"    "circle"    "diamond"   "triangle"  "triangle"  "light"    
[43123] "light"     "other"     "oval"      "light"     "unknown"   "other"    
[43129] "light"     "circle"    "rectangle" "sphere"    "other"     "other"    
[43135] NA          "oval"      "cigar"     "light"     "triangle"  "sphere"   
[43141] "sphere"    "oval"      "triangle"  "egg"       "sphere"    "triangle" 
[43147] "disk"      "formation" "unknown"   "flash"     "unknown"   "light"    
[43153] "fireball"  "unknown"   "sphere"    "light"     "formation" "sphere"   
[43159] "disk"      "flash"     "light"     "circle"    "light"     "light"    
[43165] "changing"  "teardrop"  "triangle"  "rectangle" NA          "disk"     
[43171] "circle"    "light"     "triangle"  "formation" "oval"      "circle"   
[43177] "sphere"    "circle"    "cigar"     "circle"    "disk"      "circle"   
[43183] "light"     "other"     "other"     "sphere"    "other"     "circle"   
[43189] "light"     "fireball"  "fireball"  "light"     "light"     "circle"   
[43195] "fireball"  "formation" "unknown"   "circle"    "triangle"  "light"    
[43201] "other"     "unknown"   "triangle"  "light"     "circle"    "light"    
[43207] "cylinder"  "fireball"  NA          "circle"    "circle"    "oval"     
[43213] "cigar"     "circle"    "light"     "sphere"    "light"     "light"    
[43219] "formation" "formation" "light"     "light"     "light"     "fireball" 
[43225] "light"     "light"     "light"     "light"     "other"     "unknown"  
[43231] "circle"    "unknown"   "other"     "unknown"   "light"     "sphere"   
[43237] "disk"      "disk"      "circle"    "triangle"  "light"     "sphere"   
[43243] "flash"     "triangle"  "triangle"  NA          NA          NA         
[43249] NA          NA          NA          "egg"       "light"     "other"    
[43255] "oval"      "oval"      "formation" "triangle"  "triangle"  "light"    
[43261] "light"     "disk"      "chevron"   "formation" "cylinder"  "circle"   
[43267] "other"     "formation" NA          "circle"    "formation" "light"    
[43273] "cylinder"  "fireball"  "triangle"  "cone"      "cylinder"  "light"    
[43279] "light"     "light"     "light"     "light"     "other"     "triangle" 
[43285] "light"     "circle"    "other"     "triangle"  "light"     "flash"    
[43291] "light"     "disk"      "light"     "triangle"  "circle"    "unknown"  
[43297] "other"     "disk"      "sphere"    "formation" "fireball"  "changing" 
[43303] "unknown"   "diamond"   "light"     "diamond"   "oval"      "cigar"    
[43309] "disk"      "flash"     "unknown"   "light"     "light"     "disk"     
[43315] "circle"    "light"     "fireball"  "teardrop"  "unknown"   "triangle" 
[43321] "rectangle" "circle"    "light"     "rectangle" "oval"      "unknown"  
[43327] "rectangle" "light"     "sphere"    "chevron"   "egg"       "triangle" 
[43333] "other"     "other"     "light"     "teardrop"  "oval"      "sphere"   
[43339] "other"     "sphere"    "changing"  "circle"    "sphere"    "light"    
[43345] "light"     NA          "triangle"  "cigar"     "other"     "oval"     
[43351] "diamond"   "triangle"  "teardrop"  "fireball"  "other"     "light"    
[43357] "disk"      "unknown"   "fireball"  "light"     "fireball"  "oval"     
[43363] "disk"      "disk"      "disk"      "rectangle" "triangle"  "light"    
[43369] "circle"    "other"     "sphere"    "unknown"   "light"     "circle"   
[43375] "fireball"  "oval"      "light"     "sphere"    "triangle"  "triangle" 
[43381] "circle"    "sphere"    "light"     "light"     "rectangle" "flash"    
[43387] "triangle"  "circle"    "triangle"  "circle"    "fireball"  "sphere"   
[43393] "changing"  "fireball"  "circle"    "sphere"    "circle"    "cylinder" 
[43399] "disk"      "flash"     "formation" "sphere"    "oval"      "light"    
[43405] "other"     "light"     "triangle"  "unknown"   "light"     "light"    
[43411] "fireball"  "light"     "triangle"  "cylinder"  "other"     "other"    
[43417] "light"     NA          NA          "disk"      NA          NA         
[43423] "light"     "disk"      "unknown"   "light"     "oval"      "light"    
[43429] "changing"  "sphere"    "oval"      "unknown"   "flash"     "unknown"  
[43435] "sphere"    "cigar"     "light"     "sphere"    "other"     "cylinder" 
[43441] "circle"    "disk"      "cylinder"  "disk"      "fireball"  "sphere"   
[43447] "light"     "fireball"  "light"     "light"     "light"     "other"    
[43453] "light"     "light"     "light"     "cigar"     "triangle"  "other"    
[43459] "light"     "triangle"  "chevron"   "unknown"   "light"     "light"    
[43465] "unknown"   "circle"    "teardrop"  "other"     NA          "light"    
[43471] "other"     "light"     "disk"      "triangle"  "triangle"  "light"    
[43477] "egg"       "other"     "light"     "formation" "disk"      "unknown"  
[43483] "disk"      "light"     "unknown"   "light"     "triangle"  "light"    
[43489] "oval"      "disk"      "flash"     "light"     "triangle"  "changing" 
[43495] "oval"      "unknown"   "cylinder"  "cylinder"  "unknown"   "unknown"  
[43501] "other"     "triangle"  "circle"    "other"     "diamond"   "circle"   
[43507] "other"     "triangle"  "sphere"    "cigar"     "formation" "sphere"   
[43513] "sphere"    "sphere"    "fireball"  "disk"      "sphere"    "rectangle"
[43519] "sphere"    "light"     "light"     "fireball"  "light"     "chevron"  
[43525] "diamond"   "other"     "oval"      "teardrop"  "disk"      "circle"   
[43531] "light"     "other"     "light"     "circle"    "chevron"   "light"    
[43537] "light"     "triangle"  "oval"      "oval"      "light"     "triangle" 
[43543] "circle"    "diamond"   "circle"    "light"     "light"     "circle"   
[43549] "light"     "circle"    "light"     "diamond"   "circle"    "light"    
[43555] "triangle"  "fireball"  "formation" "light"     "triangle"  "rectangle"
[43561] "light"     "unknown"   "light"     "sphere"    "circle"    "triangle" 
[43567] "light"     "sphere"    "cross"     "triangle"  "triangle"  "diamond"  
[43573] "fireball"  "circle"    "other"     "fireball"  "circle"    "sphere"   
[43579] "sphere"    "unknown"   "fireball"  "sphere"    "circle"    "triangle" 
[43585] "changing"  "cylinder"  "disk"      "changing"  NA          NA         
[43591] "light"     "triangle"  "other"     "cone"      "sphere"    "circle"   
[43597] "triangle"  "other"     "cylinder"  "triangle"  "sphere"    "other"    
[43603] "light"     "light"     "light"     NA          "circle"    "cigar"    
[43609] "triangle"  "oval"      "sphere"    "sphere"    "formation" "oval"     
[43615] "diamond"   "triangle"  "triangle"  "oval"      "sphere"    "other"    
[43621] "fireball"  "cigar"     "light"     "circle"    "circle"    "fireball" 
[43627] "diamond"   "circle"    "changing"  "diamond"   "oval"      "fireball" 
[43633] "triangle"  "unknown"   "light"     "disk"      "sphere"    "light"    
[43639] "unknown"   "unknown"   "unknown"   "fireball"  NA          "unknown"  
[43645] "formation" "oval"      "rectangle" "other"     "changing"  "light"    
[43651] "light"     "sphere"    "other"     "sphere"    "light"     "fireball" 
[43657] "light"     "circle"    "light"     NA          NA          "unknown"  
[43663] "triangle"  "triangle"  "light"     "rectangle" "formation" "disk"     
[43669] "changing"  "disk"      "light"     "light"     "formation" "circle"   
[43675] "fireball"  "light"     "fireball"  "fireball"  "light"     "circle"   
[43681] "other"     "fireball"  "other"     "light"     "triangle"  "light"    
[43687] "other"     "light"     "fireball"  NA          "sphere"    "triangle" 
[43693] "sphere"    NA          "formation" "light"     "triangle"  "cigar"    
[43699] "rectangle" "fireball"  "oval"      "fireball"  "light"     "light"    
[43705] "flash"     "sphere"    "light"     "fireball"  "unknown"   "oval"     
[43711] "fireball"  "sphere"    "light"     "light"     "circle"    "circle"   
[43717] "disk"      "light"     "light"     "triangle"  "light"     "circle"   
[43723] "circle"    "oval"      "sphere"    "fireball"  "fireball"  "fireball" 
[43729] "triangle"  "fireball"  "light"     "formation" "circle"    "unknown"  
[43735] "light"     "light"     "circle"    "other"     "light"     "other"    
[43741] "triangle"  "sphere"    "light"     "triangle"  "sphere"    NA         
[43747] "light"     "circle"    "rectangle" "circle"    "light"     "fireball" 
[43753] "circle"    "chevron"   "formation" "unknown"   "circle"    "light"    
[43759] "light"     "formation" "light"     "light"     "unknown"   "circle"   
[43765] "light"     "light"     "light"     "light"     "sphere"    "light"    
[43771] "chevron"   "unknown"   "light"     "changing"  "triangle"  "triangle" 
[43777] "rectangle" "triangle"  "triangle"  NA          NA          NA         
[43783] NA          NA          "changing"  "triangle"  "light"     "circle"   
[43789] "flash"     "circle"    "changing"  "fireball"  "circle"    "fireball" 
[43795] "triangle"  "oval"      "disk"      "cigar"     "cigar"     "light"    
[43801] "other"     "chevron"   "unknown"   "light"     "disk"      "light"    
[43807] "unknown"   "fireball"  "oval"      "oval"      "fireball"  NA         
[43813] "circle"    "triangle"  "unknown"   "sphere"    "light"     "light"    
[43819] "rectangle" "triangle"  "triangle"  "disk"      "circle"    "diamond"  
[43825] "unknown"   "other"     "circle"    "formation" "light"     "triangle" 
[43831] "triangle"  "unknown"   "cigar"     "oval"      "sphere"    "light"    
[43837] "formation" "disk"      "changing"  "light"     "light"     "disk"     
[43843] "light"     "other"     "light"     "other"     "other"     "triangle" 
[43849] "flash"     "changing"  "light"     "formation" "disk"      "light"    
[43855] "light"     "circle"    "circle"    "changing"  "cigar"     "teardrop" 
[43861] "other"     "triangle"  "cigar"     "formation" "rectangle" "fireball" 
[43867] "rectangle" "triangle"  "light"     "light"     "sphere"    "light"    
[43873] "sphere"    "light"     "egg"       "light"     "disk"      "rectangle"
[43879] "light"     "triangle"  "formation" "circle"    "fireball"  "fireball" 
[43885] "light"     "light"     "flash"     "light"     "unknown"   "light"    
[43891] "circle"    "other"     "cigar"     "cigar"     "unknown"   "light"    
[43897] "light"     "circle"    "changing"  "sphere"    "disk"      "unknown"  
[43903] "triangle"  "unknown"   "other"     "sphere"    "triangle"  "disk"     
[43909] "sphere"    "light"     "light"     "circle"    "fireball"  "light"    
[43915] "cigar"     "light"     "changing"  "cigar"     "triangle"  "triangle" 
[43921] "light"     "fireball"  "circle"    "formation" "unknown"   "other"    
[43927] "triangle"  "light"     "light"     "sphere"    "circle"    "light"    
[43933] "light"     "light"     "triangle"  "fireball"  "light"     "light"    
[43939] "unknown"   "sphere"    "fireball"  "light"     "light"     "changing" 
[43945] "light"     "light"     "circle"    "fireball"  "other"     "unknown"  
[43951] "unknown"   "light"     "unknown"   NA          "other"     "formation"
[43957] "light"     "fireball"  "formation" "other"     "light"     "oval"     
[43963] "flash"     "disk"      "circle"    "triangle"  "circle"    "light"    
[43969] "fireball"  "light"     "light"     "other"     "chevron"   "disk"     
[43975] "light"     "other"     "light"     "other"     "light"     "triangle" 
[43981] "light"     "sphere"    "light"     "unknown"   "sphere"    "disk"     
[43987] "light"     "other"     "light"     "disk"      "disk"      NA         
[43993] "flash"     "triangle"  "triangle"  "triangle"  "sphere"    "light"    
[43999] "light"     "light"     "formation" "circle"    "fireball"  "changing" 
[44005] "unknown"   "light"     "fireball"  "light"     "sphere"    NA         
[44011] "other"     "unknown"   "circle"    "unknown"   "light"     "triangle" 
[44017] "changing"  "light"     "light"     "fireball"  "light"     "light"    
[44023] "other"     "formation" "fireball"  "oval"      "circle"    "changing" 
[44029] "light"     "oval"      "formation" "triangle"  "disk"      "triangle" 
[44035] "circle"    "light"     "disk"      "light"     "circle"    "light"    
[44041] "unknown"   "unknown"   "triangle"  "rectangle" "unknown"   "cigar"    
[44047] "cigar"     "cigar"     "light"     "unknown"   "disk"      "circle"   
[44053] "fireball"  "formation" "formation" "changing"  "changing"  "changing" 
[44059] "sphere"    "light"     "oval"      "cylinder"  "circle"    "unknown"  
[44065] "disk"      "triangle"  "formation" "rectangle" "light"     "light"    
[44071] "unknown"   "other"     "light"     "triangle"  "light"     "cigar"    
[44077] "circle"    "fireball"  "formation" "circle"    "unknown"   "triangle" 
[44083] "teardrop"  "other"     "light"     "fireball"  "formation" "cigar"    
[44089] "fireball"  "light"     "light"     "chevron"   "chevron"   "light"    
[44095] "circle"    "light"     "fireball"  "unknown"   "circle"    "fireball" 
[44101] "diamond"   "fireball"  "formation" "fireball"  "triangle"  "rectangle"
[44107] "cone"      "light"     "circle"    "unknown"   "other"     "triangle" 
[44113] "fireball"  "disk"      "light"     "formation" "egg"       "unknown"  
[44119] "light"     "cross"     "sphere"    "sphere"    "unknown"   "other"    
[44125] "circle"    "fireball"  "teardrop"  "light"     "circle"    "circle"   
[44131] "unknown"   "cigar"     "circle"    "light"     "formation" "fireball" 
[44137] "fireball"  "circle"    "light"     "cross"     "light"     "teardrop" 
[44143] "light"     "circle"    "circle"    "light"     "light"     "diamond"  
[44149] "light"     "sphere"    "circle"    "disk"      "changing"  "fireball" 
[44155] "triangle"  "other"     "disk"      "cigar"     "disk"      "oval"     
[44161] NA          "cylinder"  "unknown"   "unknown"   "cylinder"  "cigar"    
[44167] "circle"    "unknown"   "sphere"    NA          NA          NA         
[44173] "circle"    NA          NA          "disk"      "light"     "other"    
[44179] "other"     "teardrop"  "sphere"    "fireball"  "disk"      "circle"   
[44185] "other"     "disk"      "diamond"   "triangle"  "unknown"   "triangle" 
[44191] "disk"      "circle"    "fireball"  "triangle"  "light"     "sphere"   
[44197] "egg"       "other"     "chevron"   "other"     "triangle"  "triangle" 
[44203] "cylinder"  "light"     "light"     "light"     "other"     "triangle" 
[44209] "unknown"   "disk"      "cylinder"  "changing"  "sphere"    "chevron"  
[44215] "cylinder"  "circle"    "sphere"    "cigar"     "oval"      "chevron"  
[44221] "other"     "other"     "circle"    "formation" "flash"     "triangle" 
[44227] "light"     "circle"    "oval"      "formation" "other"     "circle"   
[44233] "diamond"   "teardrop"  "other"     "sphere"    "sphere"    "light"    
[44239] "unknown"   "triangle"  "triangle"  "other"     "triangle"  "cylinder" 
[44245] "rectangle" "sphere"    "disk"      "formation" "oval"      "formation"
[44251] "cigar"     "cone"      "unknown"   "changing"  "other"     "sphere"   
[44257] "disk"      "disk"      "light"     "light"     "sphere"    "flash"    
[44263] "light"     "unknown"   "cigar"     "changing"  "cigar"     "triangle" 
[44269] "triangle"  "sphere"    "circle"    "sphere"    "circle"    "unknown"  
[44275] "oval"      "sphere"    "triangle"  "other"     "flash"     "triangle" 
[44281] "circle"    "light"     "sphere"    "light"     "other"     "light"    
[44287] "changing"  "other"     "unknown"   "fireball"  "fireball"  NA         
[44293] "light"     "unknown"   "chevron"   "circle"    "light"     "formation"
[44299] "oval"      "light"     "triangle"  "circle"    "oval"      "triangle" 
[44305] "sphere"    "circle"    "triangle"  "cigar"     "unknown"   "triangle" 
[44311] "formation" "triangle"  "triangle"  "unknown"   "diamond"   "light"    
[44317] "flash"     "rectangle" "circle"    "changing"  "circle"    "triangle" 
[44323] "triangle"  "light"     "fireball"  "formation" "fireball"  "triangle" 
[44329] "other"     "disk"      "cigar"     "light"     "other"     "other"    
[44335] NA          NA          "light"     NA          NA          NA         
[44341] "other"     "other"     NA          "egg"       "light"     "oval"     
[44347] "changing"  "triangle"  "circle"    "egg"       "oval"      "other"    
[44353] "disk"      "diamond"   "unknown"   "light"     "light"     "light"    
[44359] "teardrop"  "circle"    "circle"    "other"     "flash"     "circle"   
[44365] "light"     "triangle"  "other"     "disk"      "triangle"  "other"    
[44371] "circle"    "cross"     "changing"  "disk"      "disk"      "changing" 
[44377] "circle"    "light"     "light"     "teardrop"  "triangle"  "triangle" 
[44383] NA          "chevron"   "changing"  "unknown"   "other"     "cigar"    
[44389] "unknown"   "triangle"  "disk"      "rectangle" "fireball"  "changing" 
[44395] "other"     "sphere"    "unknown"   "other"     "fireball"  "circle"   
[44401] "other"     "disk"      "disk"      "egg"       "light"     "formation"
[44407] "changing"  "other"     "light"     "triangle"  "unknown"   "cigar"    
[44413] "changing"  "other"     "circle"    "cone"      "other"     "other"    
[44419] "rectangle" "disk"      "circle"    "light"     "sphere"    "circle"   
[44425] "fireball"  "sphere"    "fireball"  "sphere"    "unknown"   "triangle" 
[44431] "light"     "egg"       "light"     "light"     "other"     "other"    
[44437] "changing"  "triangle"  "triangle"  "triangle"  "oval"      "sphere"   
[44443] "rectangle" "rectangle" "formation" "light"     "other"     "unknown"  
[44449] "fireball"  "other"     "unknown"   "sphere"    "cylinder"  "oval"     
[44455] "teardrop"  "oval"      "rectangle" "disk"      "triangle"  "light"    
[44461] "triangle"  "triangle"  "disk"      "unknown"   "light"     "sphere"   
[44467] "circle"    "sphere"    "changing"  "disk"      "cylinder"  "light"    
[44473] "flash"     "other"     "light"     "light"     "disk"      "unknown"  
[44479] "light"     "circle"    "changing"  "formation" "unknown"   "triangle" 
[44485] "sphere"    "unknown"   "cylinder"  "sphere"    "unknown"   "sphere"   
[44491] "sphere"    "sphere"    "light"     "triangle"  "other"     "other"    
[44497] "disk"      "rectangle" "unknown"   "light"     "triangle"  "circle"   
[44503] "circle"    "other"     "sphere"    NA          NA          "fireball" 
[44509] "sphere"    NA          "sphere"    "light"     "circle"    "circle"   
[44515] "unknown"   "disk"      "fireball"  "teardrop"  "circle"    "oval"     
[44521] "light"     "other"     "oval"      "light"     "circle"    "other"    
[44527] "other"     "diamond"   "disk"      "diamond"   "disk"      "other"    
[44533] "light"     "changing"  "egg"       "circle"    "disk"      "sphere"   
[44539] "sphere"    "fireball"  "circle"    "triangle"  "other"     "other"    
[44545] "triangle"  "light"     "triangle"  "oval"      "other"     "unknown"  
[44551] "light"     "light"     "light"     "sphere"    "cross"     "light"    
[44557] "fireball"  "light"     "other"     "fireball"  "light"     "triangle" 
[44563] "other"     "light"     "circle"    "circle"    "fireball"  "cigar"    
[44569] "unknown"   "triangle"  "circle"    "triangle"  "sphere"    "light"    
[44575] "sphere"    "light"     "circle"    "flash"     "fireball"  "unknown"  
[44581] "light"     "light"     "unknown"   "unknown"   "unknown"   "light"    
[44587] "light"     "triangle"  "disk"      "sphere"    "unknown"   "circle"   
[44593] "triangle"  "circle"    "other"     "formation" "cigar"     "light"    
[44599] "light"     "triangle"  "triangle"  "triangle"  NA          "fireball" 
[44605] "light"     "sphere"    "unknown"   "cigar"     "oval"      "oval"     
[44611] "light"     "light"     "light"     "sphere"    "circle"    "light"    
[44617] "light"     "triangle"  "fireball"  "light"     "light"     "light"    
[44623] "circle"    "cigar"     "unknown"   "other"     "circle"    "light"    
[44629] "oval"      "sphere"    "other"     "light"     "triangle"  "light"    
[44635] "unknown"   "circle"    "light"     "changing"  "disk"      "unknown"  
[44641] "other"     "sphere"    "light"     "disk"      "sphere"    "formation"
[44647] "triangle"  "disk"      "light"     "unknown"   "other"     "changing" 
[44653] "changing"  "changing"  "circle"    "cross"     "other"     "other"    
[44659] "oval"      "disk"      "light"     "fireball"  "other"     "light"    
[44665] "light"     "circle"    "formation" "cigar"     "light"     "disk"     
[44671] "cigar"     "disk"      "disk"      "disk"      "triangle"  "disk"     
[44677] "triangle"  "unknown"   NA          "disk"      NA          "disk"     
[44683] "triangle"  NA          NA          NA          "formation" "light"    
[44689] "disk"      "oval"      "circle"    "other"     "light"     "light"    
[44695] "light"     "other"     "disk"      "triangle"  "light"     "circle"   
[44701] "cigar"     "unknown"   "circle"    "fireball"  "other"     "light"    
[44707] "circle"    "triangle"  "cylinder"  "disk"      "unknown"   "light"    
[44713] "disk"      "other"     "formation" "flash"     "triangle"  "light"    
[44719] "triangle"  NA          "unknown"   "unknown"   "cigar"     "cigar"    
[44725] "unknown"   "cigar"     "disk"      "egg"       "chevron"   "chevron"  
[44731] "unknown"   "sphere"    "teardrop"  "cigar"     "sphere"    "other"    
[44737] "other"     "other"     "light"     "fireball"  "triangle"  "changing" 
[44743] "circle"    "unknown"   "triangle"  "light"     "unknown"   "disk"     
[44749] "disk"      "other"     "cigar"     "changing"  "formation" "sphere"   
[44755] "oval"      "rectangle" "disk"      "disk"      "circle"    "disk"     
[44761] "sphere"    "sphere"    "disk"      "fireball"  "fireball"  "disk"     
[44767] "circle"    "triangle"  NA          "other"     "triangle"  "cigar"    
[44773] "egg"       "flash"     "light"     "light"     "triangle"  "circle"   
[44779] "unknown"   "disk"      "unknown"   "light"     "triangle"  "unknown"  
[44785] "light"     "cigar"     "oval"      "disk"      "sphere"    "sphere"   
[44791] "light"     "oval"      "triangle"  "disk"      "circle"    "triangle" 
[44797] "diamond"   "sphere"    "light"     "unknown"   "sphere"    "oval"     
[44803] "sphere"    "light"     NA          "oval"      "sphere"    "diamond"  
[44809] "sphere"    "other"     "light"     NA          "light"     "light"    
[44815] "other"     "formation" "flash"     "light"     "rectangle" "fireball" 
[44821] "light"     "triangle"  "cigar"     "formation" "other"     "circle"   
[44827] "circle"    "fireball"  "light"     "circle"    "triangle"  "light"    
[44833] "circle"    "other"     "circle"    "changing"  "fireball"  "changing" 
[44839] "circle"    "light"     "light"     "cigar"     "disk"      "cylinder" 
[44845] "cylinder"  "light"     "egg"       "other"     "changing"  "changing" 
[44851] "disk"      "fireball"  "cross"     "light"     "light"     "other"    
[44857] "sphere"    "circle"    "triangle"  "fireball"  "fireball"  "oval"     
[44863] "changing"  "light"     "light"     "fireball"  "unknown"   "light"    
[44869] "formation" "rectangle" "light"     "formation" "circle"    "cylinder" 
[44875] "triangle"  "triangle"  "triangle"  "light"     "disk"      "fireball" 
[44881] "disk"      "sphere"    "cigar"     "light"     NA          "light"    
[44887] "disk"      NA          NA          "light"     "fireball"  "fireball" 
[44893] "light"     "other"     "triangle"  "circle"    "circle"    "circle"   
[44899] "other"     NA          "light"     "sphere"    "light"     "light"    
[44905] "flash"     "flash"     "formation" "fireball"  "circle"    "disk"     
[44911] "triangle"  "oval"      NA          "changing"  "rectangle" "sphere"   
[44917] "disk"      "chevron"   "cigar"     "formation" "other"     "disk"     
[44923] "other"     "other"     "other"     "sphere"    "cone"      "light"    
[44929] "formation" "other"     "sphere"    "triangle"  "formation" "light"    
[44935] "diamond"   "circle"    "triangle"  "light"     "oval"      "triangle" 
[44941] "unknown"   "triangle"  "unknown"   "cylinder"  "light"     "light"    
[44947] "light"     "unknown"   "unknown"   "triangle"  "diamond"   "cigar"    
[44953] "light"     "other"     "light"     "light"     "unknown"   "chevron"  
[44959] "cylinder"  "cigar"     "sphere"    "light"     "cylinder"  "triangle" 
[44965] "light"     NA          "triangle"  "light"     "disk"      "triangle" 
[44971] "triangle"  "light"     "light"     "sphere"    "oval"      "other"    
[44977] "other"     "triangle"  "oval"      "fireball"  "light"     "cigar"    
[44983] "triangle"  "diamond"   "formation" "other"     "triangle"  "unknown"  
[44989] "other"     "egg"       "sphere"    "light"     "diamond"   "other"    
[44995] "diamond"   "unknown"   "unknown"   "oval"      "oval"      "light"    
[45001] "formation" "egg"       "fireball"  "circle"    "light"     "sphere"   
[45007] "light"     "circle"    "circle"    "diamond"   "circle"    "formation"
[45013] "sphere"    "sphere"    "other"     "light"     "unknown"   "light"    
[45019] "triangle"  "fireball"  "circle"    "oval"      "oval"      "circle"   
[45025] "triangle"  "light"     "formation" "light"     "formation" "circle"   
[45031] "fireball"  "formation" "light"     "circle"    "light"     "formation"
[45037] "circle"    "circle"    "circle"    "sphere"    "cigar"     "sphere"   
[45043] "formation" "flash"     "sphere"    "flash"     NA          "light"    
[45049] "sphere"    "light"     "oval"      "fireball"  "diamond"   "oval"     
[45055] "disk"      "disk"      "sphere"    "triangle"  "triangle"  "oval"     
[45061] "light"     "light"     "triangle"  NA          NA          NA         
[45067] NA          "cylinder"  "other"     "triangle"  "triangle"  "oval"     
[45073] "disk"      "changing"  "changing"  "other"     "unknown"   "triangle" 
[45079] "sphere"    "fireball"  "oval"      "unknown"   "light"     "cigar"    
[45085] "egg"       "triangle"  "disk"      "formation" "cigar"     "disk"     
[45091] "egg"       "light"     "light"     "light"     "rectangle" "light"    
[45097] "disk"      "light"     "circle"    "other"     "light"     "fireball" 
[45103] "light"     "other"     "light"     "cone"      "disk"      "diamond"  
[45109] "triangle"  "triangle"  "changing"  "circle"    "formation" "oval"     
[45115] "circle"    "circle"    "circle"    "other"     "egg"       "changing" 
[45121] "sphere"    "diamond"   "triangle"  "disk"      "light"     "unknown"  
[45127] "disk"      "light"     "unknown"   "unknown"   "light"     "cigar"    
[45133] "other"     "oval"      "other"     "disk"      "light"     "other"    
[45139] "disk"      "circle"    "triangle"  NA          "oval"      "unknown"  
[45145] "fireball"  "sphere"    "light"     "disk"      "flash"     "light"    
[45151] "disk"      "oval"      "light"     "light"     "circle"    "other"    
[45157] "light"     "chevron"   "chevron"   "unknown"   "light"     "light"    
[45163] "light"     "circle"    "triangle"  "triangle"  "unknown"   "chevron"  
[45169] "circle"    "triangle"  "unknown"   "oval"      "light"     "sphere"   
[45175] "sphere"    "triangle"  "formation" "light"     "teardrop"  "light"    
[45181] "fireball"  "cigar"     "disk"      "light"     "light"     "disk"     
[45187] "light"     "oval"      "changing"  "circle"    "light"     "cylinder" 
[45193] "light"     "light"     "cigar"     "sphere"    "sphere"    "other"    
[45199] "unknown"   "unknown"   "fireball"  "light"     "triangle"  "rectangle"
[45205] "formation" "formation" "light"     "changing"  "light"     "circle"   
[45211] "fireball"  "sphere"    "unknown"   "circle"    "disk"      "triangle" 
[45217] "triangle"  "fireball"  "light"     "fireball"  "light"     NA         
[45223] "light"     "fireball"  "changing"  "light"     "triangle"  "sphere"   
[45229] "sphere"    "rectangle" "cylinder"  "light"     "sphere"    "sphere"   
[45235] "disk"      "other"     "triangle"  "oval"      "triangle"  "unknown"  
[45241] "disk"      "chevron"   "rectangle" "fireball"  "triangle"  "formation"
[45247] "changing"  "triangle"  "light"     "diamond"   "egg"       "egg"      
[45253] "light"     "unknown"   "unknown"   "light"     "flash"     "light"    
[45259] "changing"  "light"     "light"     "light"     "circle"    "triangle" 
[45265] "oval"      "light"     "light"     "cylinder"  "cigar"     NA         
[45271] "other"     "formation" "diamond"   "disk"      "unknown"   "disk"     
[45277] "rectangle" "triangle"  "disk"      "disk"      "disk"      "disk"     
[45283] "cigar"     "other"     "triangle"  "circle"    "disk"      "disk"     
[45289] "light"     "unknown"   "egg"       "other"     "cylinder"  "light"    
[45295] "other"     "other"     "disk"      "unknown"   "circle"    "unknown"  
[45301] "circle"    "unknown"   "unknown"   "unknown"   "changing"  "changing" 
[45307] "changing"  "formation" "disk"      "circle"    "triangle"  "sphere"   
[45313] "disk"      "light"     "other"     "light"     "light"     "changing" 
[45319] "sphere"    "cylinder"  "sphere"    "other"     "sphere"    "light"    
[45325] "formation" "unknown"   "changing"  "unknown"   "cigar"     "light"    
[45331] NA          "unknown"   "unknown"   NA          "circle"    "disk"     
[45337] "light"     "triangle"  "changing"  "disk"      "triangle"  "circle"   
[45343] "sphere"    "cigar"     "triangle"  "sphere"    "oval"      "oval"     
[45349] "fireball"  "triangle"  "light"     "circle"    "other"     "light"    
[45355] "light"     "light"     "light"     "triangle"  "other"     "light"    
[45361] "triangle"  "circle"    "sphere"    "circle"    "circle"    "triangle" 
[45367] "triangle"  "triangle"  "sphere"    "flash"     "changing"  "disk"     
[45373] "disk"      "light"     "light"     "circle"    "light"     "disk"     
[45379] "sphere"    "fireball"  "oval"      "triangle"  "oval"      "cylinder" 
[45385] "light"     "light"     "other"     "circle"    "triangle"  "sphere"   
[45391] "light"     "triangle"  "unknown"   "formation" "triangle"  "light"    
[45397] "other"     "oval"      "light"     "unknown"   "oval"      "unknown"  
[45403] "oval"      "light"     "unknown"   "sphere"    "triangle"  "formation"
[45409] "light"     "fireball"  "light"     "light"     "formation" "light"    
[45415] "other"     "other"     "other"     "light"     "triangle"  NA         
[45421] "unknown"   "oval"      "other"     "other"     "egg"       "changing" 
[45427] "fireball"  "unknown"   "fireball"  "fireball"  "fireball"  "fireball" 
[45433] "circle"    "circle"    "cigar"     "light"     "oval"      "oval"     
[45439] "oval"      "fireball"  "fireball"  "triangle"  "oval"      "fireball" 
[45445] "other"     "circle"    "circle"    "oval"      "other"     "circle"   
[45451] "cigar"     "fireball"  "other"     "other"     "other"     "triangle" 
[45457] "cylinder"  "other"     "light"     "circle"    "circle"    "fireball" 
[45463] "other"     "fireball"  "light"     "disk"      "triangle"  "egg"      
[45469] "triangle"  "cone"      "unknown"   "oval"      "chevron"   "chevron"  
[45475] "disk"      "oval"      "triangle"  "fireball"  "circle"    "fireball" 
[45481] "disk"      "sphere"    "circle"    "other"     NA          "triangle" 
[45487] "formation" "triangle"  "triangle"  "triangle"  "triangle"  "light"    
[45493] "fireball"  "oval"      "light"     "circle"    "unknown"   "fireball" 
[45499] "formation" "changing"  "cigar"     "cigar"     "sphere"    "sphere"   
[45505] "light"     "light"     "flash"     "light"     "light"     "oval"     
[45511] "disk"      "oval"      "disk"      "circle"    "light"     "oval"     
[45517] "unknown"   "light"     "light"     "light"     "oval"      "light"    
[45523] "other"     "oval"      "light"     NA          "circle"    NA         
[45529] "triangle"  "cylinder"  "other"     "cylinder"  "cylinder"  "oval"     
[45535] NA          "disk"      "circle"    "triangle"  "light"     "light"    
[45541] "triangle"  "disk"      "circle"    "unknown"   "triangle"  "unknown"  
[45547] "triangle"  "other"     "circle"    "light"     "circle"    "other"    
[45553] "sphere"    "sphere"    "sphere"    "formation" "light"     "light"    
[45559] "circle"    "triangle"  "unknown"   "formation" "unknown"   "cigar"    
[45565] "circle"    "egg"       "circle"    "triangle"  "light"     "light"    
[45571] "light"     "circle"    "flash"     "unknown"   "light"     "sphere"   
[45577] "fireball"  "disk"      "light"     "sphere"    "light"     "light"    
[45583] "fireball"  "circle"    "oval"      "other"     "cigar"     "other"    
[45589] "disk"      "other"     "circle"    "sphere"    "sphere"    "circle"   
[45595] "unknown"   "fireball"  "rectangle" "circle"    "fireball"  "cigar"    
[45601] "triangle"  "formation" "light"     "other"     "light"     "cylinder" 
[45607] "formation" "light"     "light"     "cigar"     "unknown"   "light"    
[45613] "light"     "fireball"  "triangle"  "unknown"   "disk"      "cone"     
[45619] "oval"      "triangle"  "sphere"    "unknown"   NA          "rectangle"
[45625] "oval"      "circle"    "disk"      "disk"      "light"     "changing" 
[45631] "triangle"  "circle"    "light"     "light"     "other"     "light"    
[45637] "oval"      "triangle"  "sphere"    "light"     "other"     "light"    
[45643] "other"     "disk"      "light"     "triangle"  "triangle"  "disk"     
[45649] "triangle"  "formation" "sphere"    "unknown"   NA          "light"    
[45655] "light"     NA          "flash"     "light"     "triangle"  NA         
[45661] "other"     "light"     "other"     "circle"    "other"     "unknown"  
[45667] "fireball"  "unknown"   "circle"    "circle"    "triangle"  NA         
[45673] "triangle"  "triangle"  "disk"      "light"     "triangle"  "teardrop" 
[45679] "formation" "other"     "unknown"   "triangle"  "fireball"  "sphere"   
[45685] "circle"    "other"     "cone"      "unknown"   "unknown"   NA         
[45691] "triangle"  "triangle"  "triangle"  "triangle"  "light"     "unknown"  
[45697] "unknown"   "light"     "oval"      "triangle"  "rectangle" "chevron"  
[45703] "fireball"  "unknown"   "fireball"  "circle"    "triangle"  "light"    
[45709] "sphere"    "oval"      "circle"    "disk"      "disk"      "circle"   
[45715] "light"     "light"     "unknown"   "unknown"   "formation" "formation"
[45721] "formation" "formation" "disk"      "circle"    "triangle"  "changing" 
[45727] "triangle"  "circle"    "sphere"    "triangle"  "triangle"  "circle"   
[45733] "triangle"  "formation" "unknown"   "triangle"  "cylinder"  "light"    
[45739] "sphere"    "unknown"   "other"     "other"     "cylinder"  "triangle" 
[45745] "sphere"    "triangle"  "light"     "sphere"    "cigar"     "unknown"  
[45751] "circle"    "circle"    "light"     "light"     "light"     "circle"   
[45757] "disk"      "light"     "disk"      "light"     "circle"    "light"    
[45763] "triangle"  NA          "formation" "light"     "sphere"    "light"    
[45769] "circle"    "other"     "sphere"    "sphere"    "circle"    "other"    
[45775] "chevron"   "oval"      "oval"      "circle"    "circle"    "changing" 
[45781] "light"     "light"     "sphere"    "chevron"   "light"     "formation"
[45787] "unknown"   "oval"      "light"     "formation" "diamond"   "circle"   
[45793] "light"     "sphere"    "light"     "light"     "light"     "light"    
[45799] "light"     "light"     "unknown"   "circle"    "light"     "teardrop" 
[45805] "fireball"  "unknown"   "circle"    "other"     "cylinder"  "unknown"  
[45811] "oval"      "light"     "sphere"    "unknown"   "disk"      "disk"     
[45817] NA          "oval"      "changing"  "cylinder"  "triangle"  "disk"     
[45823] "formation" "light"     "fireball"  "triangle"  "circle"    "disk"     
[45829] "other"     "circle"    "circle"    NA          "formation" "circle"   
[45835] "other"     "cigar"     "triangle"  "fireball"  "disk"      "circle"   
[45841] "triangle"  "other"     "light"     "unknown"   "light"     "triangle" 
[45847] "fireball"  "formation" "light"     "light"     "other"     "other"    
[45853] "changing"  "disk"      "light"     "oval"      "cylinder"  "light"    
[45859] "light"     "disk"      "circle"    "oval"      "unknown"   "unknown"  
[45865] "triangle"  "light"     "light"     "light"     NA          "disk"     
[45871] "disk"      "cylinder"  "other"     "circle"    "circle"    "oval"     
[45877] "light"     "circle"    "oval"      "light"     "unknown"   "formation"
[45883] "circle"    "fireball"  "unknown"   "triangle"  "light"     "light"    
[45889] "triangle"  "light"     "diamond"   "circle"    "unknown"   "other"    
[45895] "flash"     "unknown"   "oval"      "light"     "sphere"    "unknown"  
[45901] "unknown"   "fireball"  "triangle"  "sphere"    "cigar"     "light"    
[45907] "disk"      "disk"      "light"     "light"     "circle"    "sphere"   
[45913] "circle"    "disk"      "cylinder"  "other"     "formation" "unknown"  
[45919] "flash"     "light"     "light"     "fireball"  "light"     "light"    
[45925] "fireball"  "flash"     "fireball"  "oval"      "sphere"    "formation"
[45931] "cylinder"  "other"     "cylinder"  "light"     "fireball"  "light"    
[45937] "chevron"   "cylinder"  "triangle"  "light"     NA          "circle"   
[45943] "formation" "light"     "sphere"    "fireball"  "unknown"   "sphere"   
[45949] "other"     "cone"      "light"     "light"     "light"     "unknown"  
[45955] "circle"    "light"     "circle"    "triangle"  "triangle"  "rectangle"
[45961] "light"     "circle"    "cigar"     "circle"    "cigar"     "sphere"   
[45967] "egg"       "unknown"   "formation" "changing"  "oval"      "fireball" 
[45973] "circle"    "sphere"    "light"     "unknown"   "unknown"   "unknown"  
[45979] "unknown"   "disk"      NA          "fireball"  "oval"      "other"    
[45985] "other"     "unknown"   "circle"    "light"     "sphere"    "sphere"   
[45991] "light"     "light"     "fireball"  "sphere"    "fireball"  "light"    
[45997] "triangle"  "light"     "circle"    "formation" "oval"      "circle"   
[46003] "triangle"  "circle"    "other"     "egg"       "cigar"     "cigar"    
[46009] "light"     "light"     "cigar"     "light"     "sphere"    "oval"     
[46015] "disk"      "sphere"    "cigar"     "rectangle" "disk"      "cigar"    
[46021] "cone"      "circle"    "disk"      "unknown"   "oval"      "disk"     
[46027] "cigar"     "other"     "other"     "disk"      "disk"      "circle"   
[46033] "triangle"  "light"     "unknown"   "sphere"    "unknown"   "disk"     
[46039] "light"     "other"     "disk"      "circle"    "oval"      "fireball" 
[46045] "disk"      "diamond"   NA          "formation" "triangle"  "sphere"   
[46051] "triangle"  "sphere"    "oval"      "fireball"  "oval"      "oval"     
[46057] "cigar"     "other"     "light"     "disk"      "light"     "disk"     
[46063] "fireball"  "oval"      "disk"      "cylinder"  "fireball"  "triangle" 
[46069] "cylinder"  "disk"      "other"     "diamond"   "cylinder"  "circle"   
[46075] "triangle"  "rectangle" "light"     "light"     "other"     "circle"   
[46081] "sphere"    "light"     "circle"    "formation" "sphere"    "oval"     
[46087] "unknown"   "circle"    "unknown"   "disk"      "other"     "formation"
[46093] "light"     "formation" "teardrop"  "flash"     "light"     "circle"   
[46099] "cigar"     "sphere"    "other"     "disk"      "sphere"    "circle"   
[46105] "sphere"    "cigar"     "light"     "triangle"  "sphere"    "triangle" 
[46111] "fireball"  "sphere"    "unknown"   "chevron"   "light"     "cross"    
[46117] "triangle"  "unknown"   "triangle"  "triangle"  "triangle"  "disk"     
[46123] "disk"      "triangle"  "light"     "other"     "disk"      "disk"     
[46129] "circle"    "triangle"  "flash"     "triangle"  "triangle"  "unknown"  
[46135] "triangle"  "formation" "light"     "diamond"   "triangle"  "light"    
[46141] "light"     "triangle"  "triangle"  "other"     "circle"    "oval"     
[46147] "disk"      "sphere"    "triangle"  NA          "formation" "fireball" 
[46153] "circle"    "fireball"  "light"     "light"     "light"     "diamond"  
[46159] "teardrop"  "flash"     "oval"      "changing"  "sphere"    "egg"      
[46165] "light"     "light"     "sphere"    "triangle"  "light"     "other"    
[46171] "light"     "other"     "cone"      "disk"      "cylinder"  "unknown"  
[46177] "light"     "rectangle" "sphere"    "diamond"   "light"     "other"    
[46183] "diamond"   "oval"      "disk"      "light"     "egg"       "circle"   
[46189] "triangle"  "formation" "changing"  "sphere"    "changing"  "cylinder" 
[46195] "sphere"    "triangle"  "circle"    "other"     "triangle"  "light"    
[46201] "sphere"    "light"     "egg"       "cross"     "triangle"  "light"    
[46207] "unknown"   "sphere"    "sphere"    "unknown"   "disk"      "triangle" 
[46213] "sphere"    "light"     "triangle"  "light"     "sphere"    "triangle" 
[46219] "formation" "light"     "disk"      "light"     "oval"      "light"    
[46225] "triangle"  "other"     "other"     "other"     "cigar"     "changing" 
[46231] "other"     "sphere"    "cylinder"  "other"     "changing"  "diamond"  
[46237] "light"     "light"     "sphere"    "triangle"  "triangle"  "light"    
[46243] "formation" "light"     "other"     "triangle"  "other"     "circle"   
[46249] "triangle"  "disk"      "diamond"   "oval"      "circle"    "circle"   
[46255] "light"     "light"     "fireball"  "triangle"  "rectangle" "cigar"    
[46261] "diamond"   "circle"    "changing"  "disk"      "light"     "light"    
[46267] "triangle"  "other"     "sphere"    "triangle"  "disk"      "light"    
[46273] "other"     "circle"    "circle"    "other"     "triangle"  "triangle" 
[46279] "circle"    "formation" "cigar"     "disk"      "unknown"   "circle"   
[46285] "other"     "light"     "triangle"  "circle"    "flash"     "disk"     
[46291] "circle"    "light"     "formation" "cigar"     "sphere"    "sphere"   
[46297] "fireball"  "changing"  "light"     "changing"  "unknown"   "disk"     
[46303] "sphere"    "light"     "circle"    "flash"     "rectangle" "unknown"  
[46309] "light"     "sphere"    "triangle"  "light"     "unknown"   "other"    
[46315] "flash"     "other"     "fireball"  "triangle"  "sphere"    "oval"     
[46321] "oval"      "fireball"  NA          "oval"      "flash"     "light"    
[46327] "other"     "other"     "sphere"    "other"     "formation" "circle"   
[46333] "fireball"  NA          "triangle"  "other"     "other"     "other"    
[46339] "formation" "light"     "unknown"   "other"     "formation" "light"    
[46345] "other"     "other"     NA          "circle"    "circle"    "unknown"  
[46351] "unknown"   "triangle"  "cigar"     "sphere"    "other"     "cigar"    
[46357] "changing"  "formation" "other"     "triangle"  "oval"      "unknown"  
[46363] "unknown"   "disk"      "egg"       "disk"      "light"     "unknown"  
[46369] "disk"      "triangle"  "oval"      NA          "oval"      "triangle" 
[46375] "disk"      NA          "disk"      NA          NA          NA         
[46381] "disk"      "cigar"     "chevron"   NA          NA          "light"    
[46387] "sphere"    "disk"      NA          NA          "oval"      "circle"   
[46393] "light"     "cigar"     "disk"      "light"     "sphere"    "cylinder" 
[46399] "light"     NA          "disk"      "sphere"    "unknown"   "other"    
[46405] "cone"      "light"     "other"     "light"     "disk"      "circle"   
[46411] "triangle"  "sphere"    "sphere"    "triangle"  "formation" "light"    
[46417] "formation" "triangle"  "fireball"  "oval"      "light"     "triangle" 
[46423] "triangle"  "flash"     "oval"      "light"     "rectangle" "circle"   
[46429] "fireball"  "other"     "light"     "fireball"  "light"     "light"    
[46435] "triangle"  "changing"  "unknown"   "light"     "cylinder"  "formation"
[46441] "light"     "other"     "formation" "egg"       "light"     "unknown"  
[46447] "cone"      "disk"      "light"     "cigar"     "cigar"     "disk"     
[46453] "disk"      "formation" "cross"     "other"     "triangle"  "unknown"  
[46459] "light"     "disk"      "circle"    "circle"    "circle"    "sphere"   
[46465] "unknown"   "triangle"  "unknown"   "fireball"  "unknown"   "light"    
[46471] "light"     "disk"      "other"     "other"     "oval"      "oval"     
[46477] "triangle"  "light"     "disk"      "flash"     "formation" "formation"
[46483] "unknown"   "triangle"  "flash"     "light"     "unknown"   "triangle" 
[46489] "circle"    "disk"      "light"     "triangle"  "light"     "light"    
[46495] "oval"      "light"     "other"     "unknown"   "other"     "other"    
[46501] "triangle"  "unknown"   "light"     "fireball"  "chevron"   "light"    
[46507] "light"     "light"     "light"     "light"     "diamond"   "diamond"  
[46513] "unknown"   "light"     "fireball"  "oval"      "sphere"    "oval"     
[46519] "fireball"  "fireball"  "fireball"  "changing"  "light"     "disk"     
[46525] NA          "sphere"    "circle"    "oval"      "cigar"     "fireball" 
[46531] "formation" "light"     "diamond"   "circle"    "oval"      "sphere"   
[46537] "light"     "fireball"  "circle"    "circle"    "formation" "sphere"   
[46543] "circle"    "light"     "other"     "circle"    "oval"      "circle"   
[46549] "sphere"    "unknown"   "light"     "circle"    "light"     "fireball" 
[46555] "changing"  "light"     "changing"  "light"     "circle"    "formation"
[46561] "sphere"    "cigar"     "light"     "circle"    "light"     "light"    
[46567] "unknown"   "other"     "fireball"  "light"     "egg"       "disk"     
[46573] "disk"      "disk"      "unknown"   "other"     "triangle"  NA         
[46579] NA          NA          NA          NA          "oval"      "teardrop" 
[46585] "triangle"  "light"     "triangle"  "sphere"    "circle"    "circle"   
[46591] NA          "other"     "light"     "light"     "circle"    "sphere"   
[46597] "other"     "triangle"  "fireball"  NA          "triangle"  "light"    
[46603] "light"     "circle"    "other"     "cigar"     "changing"  "light"    
[46609] "fireball"  "triangle"  "oval"      "other"     "light"     "circle"   
[46615] "oval"      "teardrop"  "diamond"   "disk"      "changing"  "unknown"  
[46621] "cigar"     "other"     "unknown"   "triangle"  "unknown"   "triangle" 
[46627] "light"     "formation" "disk"      "cylinder"  "circle"    "other"    
[46633] "unknown"   "formation" "unknown"   "unknown"   "other"     "oval"     
[46639] "triangle"  "disk"      "triangle"  "circle"    "cigar"     "other"    
[46645] "circle"    "light"     "unknown"   "light"     "triangle"  "diamond"  
[46651] "cigar"     "other"     "triangle"  "fireball"  "other"     "rectangle"
[46657] "triangle"  "other"     "light"     "light"     "light"     "circle"   
[46663] "oval"      "light"     "sphere"    "light"     "circle"    "light"    
[46669] "light"     "fireball"  "egg"       "formation" "unknown"   "diamond"  
[46675] "formation" "disk"      NA          "light"     "light"     "disk"     
[46681] "egg"       "fireball"  "other"     "other"     "cigar"     "other"    
[46687] "triangle"  "fireball"  "fireball"  "triangle"  "other"     "light"    
[46693] "fireball"  "cylinder"  "light"     "circle"    "oval"      "unknown"  
[46699] "sphere"    "formation" "light"     "light"     "circle"    "formation"
[46705] "other"     "light"     "light"     "triangle"  "triangle"  "oval"     
[46711] "triangle"  NA          "oval"      "triangle"  "cone"      "unknown"  
[46717] "light"     "circle"    "fireball"  "unknown"   "circle"    "unknown"  
[46723] "changing"  "light"     "fireball"  "unknown"   "light"     "circle"   
[46729] "light"     "sphere"    "light"     "light"     "changing"  "light"    
[46735] "light"     "fireball"  "fireball"  "circle"    "rectangle" "light"    
[46741] "changing"  "light"     "unknown"   "disk"      "disk"      "disk"     
[46747] "rectangle" "unknown"   NA          "unknown"   NA          NA         
[46753] "circle"    "triangle"  "other"     "circle"    "other"     "other"    
[46759] "formation" "circle"    "diamond"   "diamond"   "disk"      "triangle" 
[46765] "triangle"  "triangle"  "sphere"    "disk"      "cigar"     "other"    
[46771] "disk"      "light"     "circle"    "light"     "cone"      "other"    
[46777] "disk"      "circle"    "light"     "light"     "teardrop"  "formation"
[46783] "cigar"     "other"     "oval"      "triangle"  NA          "triangle" 
[46789] "triangle"  "disk"      "triangle"  NA          NA          "sphere"   
[46795] "disk"      "circle"    "sphere"    "other"     "light"     "light"    
[46801] "triangle"  "triangle"  "other"     "unknown"   "sphere"    "circle"   
[46807] "other"     "unknown"   "flash"     NA          "light"     "light"    
[46813] "light"     "light"     "disk"      "light"     "light"     "circle"   
[46819] "other"     "unknown"   "other"     "light"     "light"     "light"    
[46825] "light"     "flash"     "light"     "light"     "cylinder"  "circle"   
[46831] "light"     "unknown"   NA          "light"     "triangle"  "unknown"  
[46837] "sphere"    "light"     "other"     "light"     NA          "other"    
[46843] "formation" "fireball"  "disk"      "changing"  "chevron"   "triangle" 
[46849] "unknown"   "cigar"     "light"     "light"     "sphere"    "unknown"  
[46855] "fireball"  "changing"  "other"     "light"     "light"     "sphere"   
[46861] "triangle"  "fireball"  "sphere"    "changing"  "light"     "triangle" 
[46867] "cigar"     "circle"    "oval"      "unknown"   "formation" "cigar"    
[46873] "circle"    "disk"      "light"     "formation" "flash"     "other"    
[46879] "light"     "light"     "flash"     "teardrop"  "unknown"   "fireball" 
[46885] "other"     "light"     "light"     "cigar"     "formation" "triangle" 
[46891] "other"     "unknown"   "light"     "light"     "circle"    "light"    
[46897] "oval"      "cylinder"  "disk"      "disk"      "diamond"   "fireball" 
[46903] "light"     "unknown"   "unknown"   "other"     "unknown"   "changing" 
[46909] "cylinder"  "disk"      "changing"  "other"     "oval"      "changing" 
[46915] "disk"      "disk"      "cigar"     "cigar"     "disk"      "sphere"   
[46921] "disk"      "disk"      NA          "egg"       "unknown"   "disk"     
[46927] "triangle"  "teardrop"  "formation" "light"     "disk"      "oval"     
[46933] "sphere"    "disk"      "oval"      "sphere"    "fireball"  "disk"     
[46939] "cigar"     "light"     "sphere"    "light"     "disk"      "circle"   
[46945] "cone"      "circle"    "sphere"    "oval"      "sphere"    "rectangle"
[46951] "unknown"   "other"     "cigar"     "disk"      "disk"      "disk"     
[46957] "disk"      "cigar"     "cigar"     "other"     "disk"      "disk"     
[46963] "disk"      "changing"  "cigar"     NA          "disk"      "unknown"  
[46969] "disk"      "circle"    "oval"      "triangle"  "other"     "rectangle"
[46975] "cigar"     "triangle"  "formation" "changing"  "changing"  "other"    
[46981] "light"     "cigar"     "oval"      "triangle"  "circle"    "other"    
[46987] "disk"      "diamond"   "other"     "disk"      "circle"    "disk"     
[46993] "cigar"     "circle"    "sphere"    "unknown"   "sphere"    "chevron"  
[46999] "chevron"   "rectangle" "triangle"  "oval"      "light"     "cigar"    
[47005] "sphere"    "sphere"    "sphere"    "triangle"  "triangle"  "triangle" 
[47011] "light"     "unknown"   "circle"    "triangle"  "triangle"  "fireball" 
[47017] "chevron"   "circle"    "cigar"     "oval"      "triangle"  "light"    
[47023] "light"     "light"     "cone"      "light"     "circle"    "fireball" 
[47029] "diamond"   "light"     "other"     "fireball"  "fireball"  "sphere"   
[47035] "other"     "sphere"    "triangle"  "light"     "chevron"   "light"    
[47041] NA          "triangle"  "other"     "sphere"    "fireball"  NA         
[47047] NA          "light"     NA          "triangle"  "light"     "circle"   
[47053] NA          "diamond"   "unknown"   "sphere"    NA          NA         
[47059] "triangle"  NA          "cigar"     "disk"      "light"     "teardrop" 
[47065] "teardrop"  "light"     "circle"    "triangle"  "sphere"    "formation"
[47071] "cigar"     "light"     "other"     "oval"      "oval"      "triangle" 
[47077] "triangle"  "circle"    "circle"    "circle"    "light"     "triangle" 
[47083] "other"     "unknown"   "oval"      "triangle"  "light"     "light"    
[47089] "triangle"  "triangle"  "disk"      "unknown"   "changing"  "cylinder" 
[47095] "cigar"     "fireball"  "disk"      "circle"    "other"     "disk"     
[47101] "light"     "light"     "diamond"   "egg"       "circle"    "triangle" 
[47107] "disk"      "disk"      "cigar"     "circle"    "light"     "other"    
[47113] "light"     "chevron"   "triangle"  "other"     "light"     "fireball" 
[47119] "circle"    "teardrop"  "chevron"   "unknown"   NA          "triangle" 
[47125] "oval"      "oval"      "changing"  "cylinder"  "oval"      "circle"   
[47131] "unknown"   "flash"     "fireball"  "diamond"   "unknown"   "unknown"  
[47137] "light"     "triangle"  "oval"      "light"     "light"     "circle"   
[47143] "sphere"    "triangle"  "diamond"   "light"     "light"     "light"    
[47149] "chevron"   "sphere"    "unknown"   "triangle"  "triangle"  "light"    
[47155] "diamond"   "light"     "circle"    "sphere"    "teardrop"  "flash"    
[47161] "oval"      "light"     "changing"  "chevron"   "triangle"  "triangle" 
[47167] "egg"       "other"     "disk"      "teardrop"  "teardrop"  "unknown"  
[47173] "oval"      "unknown"   "sphere"    "sphere"    "rectangle" "triangle" 
[47179] "other"     "other"     "circle"    "disk"      NA          "triangle" 
[47185] "formation" "other"     "triangle"  "oval"      "cigar"     "disk"     
[47191] "sphere"    "rectangle" "light"     "circle"    "other"     "circle"   
[47197] "disk"      "circle"    "cylinder"  "light"     "light"     "oval"     
[47203] "triangle"  "triangle"  "unknown"   "light"     "unknown"   "cylinder" 
[47209] "teardrop"  "oval"      "circle"    "light"     "disk"      "other"    
[47215] "other"     "circle"    "changing"  "disk"      "changing"  "disk"     
[47221] "cigar"     "oval"      "triangle"  "disk"      "circle"    "cross"    
[47227] "cone"      "unknown"   "light"     "formation" "light"     "sphere"   
[47233] "light"     "cylinder"  "unknown"   "diamond"   "triangle"  "circle"   
[47239] "disk"      "unknown"   "unknown"   "unknown"   "other"     "unknown"  
[47245] "cigar"     "disk"      "other"     "sphere"    "triangle"  "cigar"    
[47251] "light"     "formation" NA          "egg"       NA          NA         
[47257] "circle"    "light"     "disk"      "disk"      "other"     "light"    
[47263] "sphere"    "triangle"  "unknown"   "unknown"   "circle"    "changing" 
[47269] "triangle"  "fireball"  "egg"       "cylinder"  "light"     NA         
[47275] "triangle"  "other"     "disk"      "disk"      "other"     "changing" 
[47281] "disk"      "changing"  "unknown"   "unknown"   "circle"    NA         
[47287] "rectangle" "light"     "unknown"   "other"     "cone"      "formation"
[47293] "light"     "light"     "other"     "triangle"  "circle"    "light"    
[47299] "fireball"  "teardrop"  "disk"      "sphere"    "light"     "unknown"  
[47305] "light"     "light"     "light"     "circle"    "circle"    "oval"     
[47311] "unknown"   "light"     "circle"    "disk"      "light"     "sphere"   
[47317] "unknown"   "light"     "light"     "unknown"   "light"     "fireball" 
[47323] "other"     "light"     "cross"     "fireball"  "disk"      "triangle" 
[47329] "light"     "oval"      "triangle"  "triangle"  "unknown"   "triangle" 
[47335] "sphere"    "diamond"   "fireball"  "unknown"   "circle"    "fireball" 
[47341] "unknown"   "flash"     "circle"    "oval"      "chevron"   "light"    
[47347] "fireball"  "sphere"    "circle"    "fireball"  "light"     "oval"     
[47353] "other"     "circle"    "circle"    "light"     "light"     "sphere"   
[47359] "sphere"    "fireball"  "light"     "unknown"   "unknown"   "fireball" 
[47365] "light"     "light"     "other"     "diamond"   "oval"      "fireball" 
[47371] "disk"      NA          "fireball"  NA          "other"     NA         
[47377] "other"     "triangle"  "unknown"   "oval"      "cylinder"  "fireball" 
[47383] "light"     "triangle"  "changing"  NA          "oval"      "unknown"  
[47389] "light"     "light"     "light"     "triangle"  "unknown"   "egg"      
[47395] "sphere"    "cigar"     "disk"      "teardrop"  "triangle"  "circle"   
[47401] NA          "light"     "light"     "sphere"    "light"     "triangle" 
[47407] "unknown"   "light"     "light"     "disk"      "other"     "light"    
[47413] "triangle"  "circle"    "disk"      "disk"      "sphere"    NA         
[47419] "circle"    "circle"    "fireball"  "sphere"    "fireball"  "fireball" 
[47425] "rectangle" "fireball"  "light"     "light"     "formation" "sphere"   
[47431] "light"     "other"     "triangle"  "light"     "rectangle" "other"    
[47437] "other"     "unknown"   "unknown"   "triangle"  "cigar"     "circle"   
[47443] "triangle"  "unknown"   "light"     "unknown"   "light"     "light"    
[47449] "light"     "light"     NA          "light"     "diamond"   "circle"   
[47455] "changing"  "light"     "fireball"  "circle"    "cylinder"  "light"    
[47461] "fireball"  "oval"      "changing"  "formation" "circle"    "cylinder" 
[47467] "unknown"   "unknown"   "circle"    "light"     "disk"      "other"    
[47473] "diamond"   "flash"     "fireball"  "light"     "formation" "cigar"    
[47479] "flash"     "triangle"  "circle"    "triangle"  "unknown"   "cigar"    
[47485] "unknown"   "sphere"    "oval"      "oval"      "light"     "sphere"   
[47491] NA          "fireball"  "triangle"  "triangle"  "triangle"  "fireball" 
[47497] "unknown"   "egg"       "fireball"  "other"     "fireball"  "triangle" 
[47503] "fireball"  "triangle"  "fireball"  "circle"    "unknown"   "unknown"  
[47509] "chevron"   "oval"      "oval"      "light"     "flash"     NA         
[47515] "triangle"  "oval"      "other"     "circle"    "triangle"  "light"    
[47521] "light"     "triangle"  "other"     "triangle"  "other"     "teardrop" 
[47527] "circle"    "sphere"    "cross"     "oval"      "sphere"    "sphere"   
[47533] "sphere"    "light"     "triangle"  "triangle"  "unknown"   "triangle" 
[47539] "sphere"    "triangle"  "cone"      "light"     "chevron"   "cigar"    
[47545] "oval"      "disk"      "unknown"   "light"     "other"     "formation"
[47551] NA          "light"     "light"     "disk"      "teardrop"  "sphere"   
[47557] "light"     "cylinder"  "oval"      "light"     "other"     "light"    
[47563] "disk"      "sphere"    "light"     "light"     "fireball"  "triangle" 
[47569] "circle"    "circle"    "triangle"  "unknown"   "triangle"  "light"    
[47575] "chevron"   "diamond"   "light"     "light"     "unknown"   "unknown"  
[47581] "other"     "cylinder"  "circle"    "other"     "light"     "light"    
[47587] "oval"      "oval"      "light"     "fireball"  NA          "sphere"   
[47593] "formation" "cigar"     "oval"      "oval"      "oval"      "unknown"  
[47599] "sphere"    "sphere"    "other"     "light"     "cigar"     "disk"     
[47605] NA          "circle"    "cylinder"  "sphere"    "cone"      "diamond"  
[47611] "disk"      "circle"    "light"     "triangle"  "unknown"   "circle"   
[47617] "unknown"   "teardrop"  "unknown"   "triangle"  "triangle"  "formation"
[47623] "fireball"  "rectangle" "flash"     "circle"    "cone"      NA         
[47629] "flash"     "other"     "unknown"   "unknown"   "light"     "sphere"   
[47635] "unknown"   "cone"      "circle"    "sphere"    "triangle"  "light"    
[47641] "fireball"  "light"     "sphere"    "fireball"  "fireball"  NA         
[47647] "oval"      "circle"    "disk"      "changing"  "other"     "other"    
[47653] "light"     "triangle"  "triangle"  NA          NA          "cylinder" 
[47659] "sphere"    NA          NA          "triangle"  "light"     "other"    
[47665] "fireball"  "light"     "disk"      "egg"       "egg"       "light"    
[47671] "oval"      "egg"       "light"     "triangle"  "chevron"   "light"    
[47677] "diamond"   "triangle"  "chevron"   "light"     "sphere"    "disk"     
[47683] "triangle"  "rectangle" "light"     "triangle"  "triangle"  "unknown"  
[47689] "disk"      "light"     "sphere"    "light"     "circle"    "formation"
[47695] "disk"      "teardrop"  "light"     "rectangle" "teardrop"  "disk"     
[47701] "light"     "unknown"   "oval"      "disk"      "disk"      "other"    
[47707] "light"     "oval"      "triangle"  "fireball"  "circle"    "sphere"   
[47713] "unknown"   "disk"      "sphere"    "light"     "light"     "diamond"  
[47719] "unknown"   "light"     "circle"    "other"     "cigar"     "cylinder" 
[47725] "unknown"   "unknown"   "circle"    "diamond"   "light"     "egg"      
[47731] "cigar"     "light"     "flash"     "other"     "other"     "other"    
[47737] "chevron"   "unknown"   "cigar"     "oval"      "triangle"  "light"    
[47743] "light"     "unknown"   "light"     "circle"    "disk"      "disk"     
[47749] "changing"  "flash"     "sphere"    "diamond"   "flash"     "light"    
[47755] "sphere"    "light"     "light"     "sphere"    "teardrop"  "circle"   
[47761] "circle"    "cone"      "circle"    "unknown"   "triangle"  "triangle" 
[47767] "rectangle" "other"     "triangle"  "light"     "unknown"   "diamond"  
[47773] "light"     "disk"      "light"     "disk"      "unknown"   "oval"     
[47779] "circle"    "light"     "circle"    "light"     "light"     "sphere"   
[47785] "circle"    "egg"       "cigar"     "fireball"  "disk"      "formation"
[47791] "cone"      "light"     "sphere"    "light"     "unknown"   "disk"     
[47797] "circle"    "light"     "cross"     "fireball"  "sphere"    "sphere"   
[47803] "unknown"   "triangle"  "formation" "formation" "formation" "unknown"  
[47809] "fireball"  "fireball"  "circle"    "light"     "oval"      "oval"     
[47815] "unknown"   "oval"      "circle"    "light"     "unknown"   "fireball" 
[47821] "formation" "formation" "other"     "disk"      "circle"    "other"    
[47827] "other"     NA          "triangle"  NA          NA          "diamond"  
[47833] NA          NA          NA          "changing"  "unknown"   "light"    
[47839] "circle"    "oval"      "triangle"  "other"     "other"     "other"    
[47845] "circle"    "light"     "light"     "triangle"  "formation" "light"    
[47851] "light"     "other"     "cylinder"  "cigar"     "oval"      "light"    
[47857] "light"     "oval"      "light"     "sphere"    "oval"      "other"    
[47863] "oval"      "circle"    "formation" "triangle"  NA          "teardrop" 
[47869] "chevron"   "other"     "circle"    "other"     "triangle"  "disk"     
[47875] "disk"      "cigar"     "circle"    "oval"      "oval"      "other"    
[47881] "other"     "triangle"  "triangle"  "triangle"  "circle"    "other"    
[47887] "triangle"  "disk"      "chevron"   "formation" "triangle"  "circle"   
[47893] "sphere"    "changing"  "egg"       "unknown"   "oval"      "unknown"  
[47899] "light"     "sphere"    "circle"    "oval"      "oval"      "formation"
[47905] "other"     "light"     "disk"      "circle"    "disk"      "light"    
[47911] "oval"      "light"     "circle"    "circle"    "other"     "light"    
[47917] "disk"      "light"     "light"     "other"     "oval"      NA         
[47923] "disk"      "disk"      "egg"       "circle"    "light"     "circle"   
[47929] "changing"  "triangle"  "circle"    "changing"  "disk"      "rectangle"
[47935] "sphere"    "flash"     "light"     "formation" "light"     "circle"   
[47941] "disk"      "sphere"    "triangle"  "disk"      "unknown"   "cigar"    
[47947] "other"     "light"     "changing"  "circle"    "formation" "changing" 
[47953] "light"     "light"     "oval"      "fireball"  "formation" "teardrop" 
[47959] "fireball"  "sphere"    "triangle"  "light"     "disk"      "circle"   
[47965] "flash"     "changing"  "triangle"  "circle"    "other"     "light"    
[47971] "changing"  "light"     "other"     "circle"    "fireball"  "light"    
[47977] "circle"    "other"     "triangle"  "fireball"  "light"     "circle"   
[47983] "fireball"  "unknown"   "oval"      "fireball"  "light"     "sphere"   
[47989] "other"     "circle"    "sphere"    "other"     "oval"      "flash"    
[47995] "light"     "circle"    "light"     "rectangle" "cigar"     "light"    
[48001] "triangle"  "sphere"    "triangle"  "formation" "triangle"  "other"    
[48007] "circle"    "triangle"  "light"     "circle"    "light"     "light"    
[48013] "circle"    NA          "sphere"    "light"     "light"     "circle"   
[48019] "triangle"  "circle"    "disk"      "triangle"  "unknown"   "formation"
[48025] "sphere"    "oval"      "sphere"    "disk"      "light"     "unknown"  
[48031] "other"     "circle"    "unknown"   "changing"  "triangle"  "light"    
[48037] "light"     "formation" "circle"    "sphere"    "oval"      "light"    
[48043] "triangle"  "sphere"    "light"     "cigar"     "disk"      "fireball" 
[48049] "circle"    "other"     "unknown"   "other"     "oval"      "chevron"  
[48055] "other"     "light"     "circle"    "fireball"  "light"     "chevron"  
[48061] "light"     "unknown"   "unknown"   "cylinder"  "disk"      "rectangle"
[48067] "sphere"    "sphere"    "cone"      "circle"    "cigar"     "other"    
[48073] "triangle"  "triangle"  "triangle"  "oval"      "sphere"    "cigar"    
[48079] "other"     "other"     "light"     "unknown"   "circle"    "cone"     
[48085] "fireball"  "light"     "light"     "light"     "light"     "cylinder" 
[48091] "oval"      "formation" "diamond"   "light"     "triangle"  "changing" 
[48097] "circle"    "disk"      "diamond"   "light"     "cigar"     "unknown"  
[48103] "light"     "triangle"  "cone"      "changing"  "light"     "changing" 
[48109] "changing"  "triangle"  "oval"      "triangle"  "cigar"     "flash"    
[48115] "other"     "formation" "rectangle" "unknown"   "light"     "disk"     
[48121] "circle"    "egg"       "diamond"   NA          "light"     "circle"   
[48127] "triangle"  "triangle"  "unknown"   "other"     "circle"    "light"    
[48133] "sphere"    "unknown"   "light"     "circle"    "other"     "formation"
[48139] "circle"    "triangle"  "circle"    "triangle"  "unknown"   "fireball" 
[48145] "light"     "other"     "unknown"   "fireball"  "teardrop"  "changing" 
[48151] "changing"  "flash"     "other"     "circle"    "light"     "light"    
[48157] "light"     "oval"      "disk"      "circle"    "unknown"   "fireball" 
[48163] "light"     "light"     "changing"  "unknown"   "triangle"  "fireball" 
[48169] "light"     "circle"    "disk"      "other"     "light"     "oval"     
[48175] "unknown"   "light"     "oval"      "diamond"   "light"     "cigar"    
[48181] "circle"    "oval"      "sphere"    "sphere"    "disk"      "rectangle"
[48187] "triangle"  "sphere"    "triangle"  "oval"      "oval"      "teardrop" 
[48193] "light"     "unknown"   "light"     "chevron"   "cylinder"  "cigar"    
[48199] "light"     "other"     "light"     "triangle"  "oval"      "light"    
[48205] "disk"      "unknown"   "fireball"  "triangle"  "unknown"   "sphere"   
[48211] "circle"    "oval"      "triangle"  "triangle"  "unknown"   "circle"   
[48217] "other"     "rectangle" "fireball"  "light"     "light"     "triangle" 
[48223] "disk"      "cigar"     "triangle"  "triangle"  "oval"      "light"    
[48229] "unknown"   "fireball"  "light"     "circle"    "oval"      "circle"   
[48235] "triangle"  "light"     "sphere"    "sphere"    "chevron"   "circle"   
[48241] "circle"    "formation" "changing"  "light"     "other"     "sphere"   
[48247] "fireball"  "light"     "flash"     "fireball"  "sphere"    "fireball" 
[48253] "fireball"  "oval"      "disk"      "cylinder"  "unknown"   "triangle" 
[48259] "disk"      "light"     "other"     "unknown"   NA          NA         
[48265] NA          "triangle"  NA          "fireball"  "other"     "light"    
[48271] "flash"     "disk"      "other"     "flash"     "formation" "light"    
[48277] "sphere"    "light"     "disk"      "unknown"   "cylinder"  "triangle" 
[48283] "changing"  "light"     "fireball"  "sphere"    "light"     "light"    
[48289] "chevron"   "light"     "circle"    "unknown"   "diamond"   "triangle" 
[48295] "sphere"    "cigar"     "cylinder"  "disk"      "changing"  "light"    
[48301] "unknown"   "light"     "light"     "cylinder"  "rectangle" "triangle" 
[48307] "light"     "fireball"  "circle"    "unknown"   "light"     "light"    
[48313] "circle"    "cylinder"  "formation" "other"     "cross"     "light"    
[48319] "triangle"  "diamond"   "diamond"   "changing"  "changing"  "triangle" 
[48325] "changing"  "circle"    "circle"    "other"     "circle"    "changing" 
[48331] "fireball"  "light"     "circle"    "light"     "light"     "unknown"  
[48337] "fireball"  "sphere"    "sphere"    "circle"    "light"     "disk"     
[48343] "triangle"  "circle"    "triangle"  "unknown"   "disk"      "other"    
[48349] "triangle"  "disk"      "circle"    "unknown"   "cigar"     "changing" 
[48355] "light"     "circle"    "light"     "light"     "light"     "unknown"  
[48361] "triangle"  "light"     "triangle"  "disk"      "disk"      "sphere"   
[48367] "circle"    "light"     "fireball"  "disk"      "light"     "disk"     
[48373] "light"     "sphere"    "changing"  "light"     "unknown"   "triangle" 
[48379] "formation" "cigar"     "unknown"   "light"     "sphere"    "triangle" 
[48385] "oval"      "oval"      "disk"      "diamond"   "light"     "triangle" 
[48391] "unknown"   "fireball"  "unknown"   "oval"      "triangle"  "triangle" 
[48397] "triangle"  "circle"    "disk"      "other"     "triangle"  "other"    
[48403] "light"     "light"     "light"     "light"     "light"     "unknown"  
[48409] "oval"      "changing"  "cigar"     "light"     "circle"    "circle"   
[48415] "circle"    "sphere"    "circle"    "other"     "fireball"  "unknown"  
[48421] "light"     "fireball"  "fireball"  "circle"    "triangle"  "other"    
[48427] "disk"      "teardrop"  NA          "diamond"   NA          "other"    
[48433] "other"     "light"     "disk"      "triangle"  "unknown"   "triangle" 
[48439] "other"     "other"     "light"     "triangle"  "light"     "cylinder" 
[48445] "diamond"   "light"     "disk"      "sphere"    "light"     "light"    
[48451] "chevron"   "disk"      "triangle"  "triangle"  "sphere"    "circle"   
[48457] NA          "light"     "circle"    "unknown"   "changing"  "unknown"  
[48463] "disk"      "circle"    "cylinder"  "unknown"   "cylinder"  "triangle" 
[48469] "circle"    NA          "flash"     "sphere"    "circle"    "light"    
[48475] "light"     "cone"      "light"     "triangle"  "oval"      "circle"   
[48481] "changing"  "disk"      "circle"    "unknown"   "triangle"  "light"    
[48487] "unknown"   "other"     "cigar"     "triangle"  "oval"      "teardrop" 
[48493] "light"     "triangle"  "circle"    "egg"       "light"     "changing" 
[48499] "light"     "oval"      "unknown"   "formation" "triangle"  "light"    
[48505] "light"     "sphere"    "triangle"  "light"     "flash"     "triangle" 
[48511] "rectangle" "sphere"    "sphere"    "unknown"   "sphere"    "circle"   
[48517] "sphere"    "unknown"   "other"     "circle"    "disk"      "circle"   
[48523] "light"     "circle"    "unknown"   "light"     "diamond"   "oval"     
[48529] "other"     "formation" "formation" "triangle"  "light"     "formation"
[48535] "light"     "circle"    "light"     "sphere"    "triangle"  "changing" 
[48541] "sphere"    "light"     "teardrop"  "fireball"  "light"     "circle"   
[48547] NA          "circle"    "flash"     "triangle"  "circle"    "light"    
[48553] "circle"    "other"     "other"     "formation" "triangle"  "other"    
[48559] "cross"     "formation" "triangle"  "formation" "sphere"    "formation"
[48565] "fireball"  "triangle"  "sphere"    "light"     "triangle"  "flash"    
[48571] "light"     "fireball"  "light"     NA          "rectangle" "sphere"   
[48577] "triangle"  "unknown"   "sphere"    "disk"      "circle"    "disk"     
[48583] NA          NA          NA          "formation" "disk"      "changing" 
[48589] "triangle"  "other"     "rectangle" "fireball"  "light"     "flash"    
[48595] "other"     "light"     "sphere"    NA          "light"     "fireball" 
[48601] "sphere"    "flash"     "egg"       "unknown"   "light"     "other"    
[48607] "circle"    "unknown"   "other"     "sphere"    "sphere"    "oval"     
[48613] "disk"      "diamond"   "circle"    "other"     "chevron"   "disk"     
[48619] "fireball"  "diamond"   "disk"      "oval"      "light"     "sphere"   
[48625] "cigar"     "other"     "cylinder"  "disk"      "light"     "triangle" 
[48631] "other"     "triangle"  "light"     "unknown"   "unknown"   "circle"   
[48637] "unknown"   "teardrop"  "sphere"    "oval"      "circle"    "cross"    
[48643] "light"     "flash"     "light"     "sphere"    "oval"      "cylinder" 
[48649] "light"     "light"     "flash"     "teardrop"  "unknown"   "disk"     
[48655] "triangle"  "fireball"  "oval"      "oval"      "light"     "light"    
[48661] "oval"      "light"     "disk"      "triangle"  "cone"      "changing" 
[48667] "light"     "other"     "other"     "circle"    "sphere"    "sphere"   
[48673] "cigar"     "light"     "circle"    "other"     "triangle"  "triangle" 
[48679] "light"     "disk"      "changing"  "fireball"  "disk"      "fireball" 
[48685] "unknown"   "sphere"    "circle"    "disk"      "cylinder"  "cylinder" 
[48691] "circle"    "triangle"  "fireball"  "oval"      "triangle"  "fireball" 
[48697] "triangle"  "light"     "light"     "light"     "light"     "unknown"  
[48703] "fireball"  "light"     "unknown"   "fireball"  "cylinder"  "sphere"   
[48709] "triangle"  "diamond"   "fireball"  "oval"      "diamond"   "triangle" 
[48715] "triangle"  "disk"      "formation" "triangle"  "disk"      "fireball" 
[48721] "flash"     "fireball"  "oval"      "light"     "oval"      "light"    
[48727] "diamond"   "disk"      "changing"  "disk"      "sphere"    "sphere"   
[48733] "other"     "rectangle" "sphere"    "circle"    "triangle"  "light"    
[48739] "light"     "diamond"   "changing"  "sphere"    "changing"  "circle"   
[48745] "disk"      "triangle"  "circle"    "triangle"  "triangle"  "fireball" 
[48751] "light"     "disk"      "cigar"     "fireball"  "oval"      "oval"     
[48757] "disk"      "circle"    "circle"    "teardrop"  "disk"      NA         
[48763] "formation" NA          NA          "light"     "fireball"  "disk"     
[48769] "egg"       "light"     "other"     "circle"    "circle"    "unknown"  
[48775] "formation" "triangle"  "triangle"  "circle"    "teardrop"  "sphere"   
[48781] "light"     "light"     "light"     "teardrop"  "changing"  "unknown"  
[48787] "other"     "light"     "changing"  "fireball"  "disk"      "triangle" 
[48793] "triangle"  "light"     "disk"      "formation" "sphere"    "light"    
[48799] "disk"      "sphere"    "triangle"  "light"     "oval"      "circle"   
[48805] "oval"      "circle"    "other"     "diamond"   "formation" "light"    
[48811] "light"     "teardrop"  "other"     "chevron"   "light"     "triangle" 
[48817] "light"     "unknown"   "triangle"  "flash"     "sphere"    "cylinder" 
[48823] "disk"      "disk"      "changing"  "light"     "light"     "circle"   
[48829] "light"     "sphere"    "teardrop"  "disk"      "unknown"   "disk"     
[48835] "oval"      "disk"      "unknown"   "circle"    "oval"      "light"    
[48841] "other"     "formation" "diamond"   "egg"       "changing"  "triangle" 
[48847] "formation" "light"     "light"     "egg"       "circle"    "formation"
[48853] "circle"    "triangle"  "light"     "sphere"    "triangle"  "sphere"   
[48859] "unknown"   "triangle"  "other"     "circle"    "light"     "fireball" 
[48865] "light"     "fireball"  "oval"      "disk"      "rectangle" "light"    
[48871] "cross"     "circle"    "light"     "cigar"     "oval"      "circle"   
[48877] "sphere"    "circle"    "light"     "oval"      "circle"    "triangle" 
[48883] "other"     "fireball"  "rectangle" "light"     "disk"      "sphere"   
[48889] "oval"      "oval"      "sphere"    "circle"    "sphere"    "cigar"    
[48895] "other"     "disk"      "cigar"     "rectangle" "chevron"   "light"    
[48901] "unknown"   "other"     "other"     "light"     "unknown"   "formation"
[48907] "light"     "cigar"     "other"     "cigar"     "triangle"  "light"    
[48913] "rectangle" "circle"    NA          NA          NA          "triangle" 
[48919] "triangle"  NA          NA          "formation" "triangle"  "cigar"    
[48925] "other"     "disk"      "unknown"   "light"     "formation" "circle"   
[48931] NA          "disk"      "teardrop"  "other"     "fireball"  "triangle" 
[48937] "other"     "diamond"   "formation" "light"     "light"     "diamond"  
[48943] "rectangle" "unknown"   "unknown"   "flash"     "oval"      "other"    
[48949] "cigar"     "light"     "light"     "triangle"  "light"     "formation"
[48955] "changing"  "light"     "sphere"    "light"     "disk"      "light"    
[48961] "disk"      "light"     "other"     "disk"      "changing"  "egg"      
[48967] "cigar"     "circle"    "light"     NA          "fireball"  "circle"   
[48973] "cigar"     "other"     NA          "oval"      "light"     "light"    
[48979] "circle"    "circle"    "other"     "triangle"  "sphere"    "chevron"  
[48985] "light"     "formation" "unknown"   "circle"    "disk"      "light"    
[48991] "circle"    "circle"    "other"     "unknown"   "sphere"    "disk"     
[48997] "circle"    "unknown"   "unknown"   NA          "oval"      "light"    
[49003] "light"     "circle"    "light"     "light"     "light"     "light"    
[49009] "light"     "triangle"  "fireball"  "triangle"  "sphere"    NA         
[49015] "other"     "oval"      "fireball"  "fireball"  "light"     "light"    
[49021] "circle"    "unknown"   "circle"    "triangle"  "light"     "unknown"  
[49027] "circle"    "light"     "oval"      "changing"  "sphere"    "light"    
[49033] "circle"    "fireball"  "formation" "light"     "cylinder"  "triangle" 
[49039] "light"     "fireball"  "unknown"   "other"     "other"     "other"    
[49045] "sphere"    "light"     "other"     "fireball"  "triangle"  "light"    
[49051] "formation" "circle"    NA          "diamond"   "light"     "sphere"   
[49057] "triangle"  "flash"     "cigar"     "circle"    "chevron"   "light"    
[49063] "circle"    "disk"      "light"     "oval"      "oval"      "teardrop" 
[49069] NA          NA          "triangle"  "light"     "disk"      "formation"
[49075] "triangle"  "cylinder"  "fireball"  "sphere"    "cigar"     "oval"     
[49081] "disk"      "changing"  "triangle"  "oval"      "disk"      "oval"     
[49087] "chevron"   "light"     "circle"    "light"     "cone"      "other"    
[49093] "sphere"    "circle"    "unknown"   "sphere"    "light"     "oval"     
[49099] "egg"       "light"     "light"     "light"     "light"     "light"    
[49105] "unknown"   "circle"    "light"     "sphere"    "unknown"   "other"    
[49111] "cone"      "unknown"   "light"     "triangle"  "egg"       "disk"     
[49117] "triangle"  "unknown"   "changing"  "circle"    "changing"  "light"    
[49123] "formation" "teardrop"  "circle"    "sphere"    "triangle"  "light"    
[49129] "rectangle" "light"     "rectangle" "disk"      "circle"    "triangle" 
[49135] "changing"  "circle"    "other"     "teardrop"  "formation" "disk"     
[49141] "other"     "rectangle" "light"     "disk"      "disk"      "disk"     
[49147] "unknown"   "oval"      "circle"    "cigar"     "other"     "light"    
[49153] "circle"    "triangle"  "circle"    "formation" "unknown"   NA         
[49159] "light"     "triangle"  "sphere"    "flash"     "sphere"    "triangle" 
[49165] "light"     "disk"      "disk"      "disk"      "circle"    "light"    
[49171] "other"     "other"     "other"     "sphere"    "triangle"  "light"    
[49177] "light"     "other"     "changing"  "oval"      "cigar"     "unknown"  
[49183] "light"     "unknown"   "light"     "teardrop"  "flash"     "triangle" 
[49189] "triangle"  "formation" "other"     "triangle"  "sphere"    "formation"
[49195] "circle"    "cigar"     "oval"      "unknown"   "triangle"  "other"    
[49201] "light"     "light"     "circle"    "sphere"    "triangle"  "sphere"   
[49207] "circle"    "rectangle" "unknown"   "disk"      "rectangle" "sphere"   
[49213] "sphere"    "cross"     "light"     "fireball"  "fireball"  "fireball" 
[49219] "light"     "circle"    "unknown"   "fireball"  "light"     "triangle" 
[49225] "light"     "light"     "fireball"  "circle"    "chevron"   "oval"     
[49231] "fireball"  "disk"      "light"     "disk"      "rectangle" "other"    
[49237] "triangle"  "triangle"  "triangle"  NA          NA          NA         
[49243] "unknown"   NA          "disk"      "teardrop"  "fireball"  "cylinder" 
[49249] "circle"    "unknown"   "sphere"    "other"     "chevron"   "unknown"  
[49255] "disk"      "light"     "fireball"  "sphere"    "changing"  "light"    
[49261] "light"     "disk"      "unknown"   "changing"  "other"     "circle"   
[49267] "other"     "disk"      "unknown"   NA          "light"     "formation"
[49273] "teardrop"  "light"     "cigar"     "fireball"  "unknown"   "light"    
[49279] "light"     "disk"      "oval"      "changing"  "disk"      "triangle" 
[49285] "cigar"     "formation" "other"     "disk"      "other"     "light"    
[49291] "oval"      "cone"      "light"     "circle"    "flash"     "fireball" 
[49297] "disk"      "unknown"   "light"     "rectangle" "disk"      "cigar"    
[49303] "light"     NA          "teardrop"  "circle"    "circle"    "triangle" 
[49309] "circle"    "cigar"     "changing"  "oval"      "fireball"  "disk"     
[49315] "fireball"  "other"     "circle"    "light"     "disk"      "changing" 
[49321] "light"     "disk"      "cylinder"  "other"     "light"     "teardrop" 
[49327] "other"     "triangle"  "light"     "light"     "unknown"   "changing" 
[49333] NA          "other"     "changing"  "disk"      "formation" NA         
[49339] "fireball"  "light"     "light"     "light"     "triangle"  "light"    
[49345] "light"     "light"     "disk"      "circle"    "disk"      "circle"   
[49351] "flash"     "circle"    "other"     "light"     NA          "unknown"  
[49357] "light"     "oval"      "other"     "fireball"  "light"     "circle"   
[49363] "circle"    "light"     "circle"    "triangle"  "sphere"    "fireball" 
[49369] "fireball"  "light"     "fireball"  "light"     "triangle"  "fireball" 
[49375] "sphere"    "disk"      "light"     "light"     "circle"    "fireball" 
[49381] "oval"      "triangle"  "fireball"  "sphere"    "other"     "circle"   
[49387] "oval"      "oval"      "light"     "light"     "sphere"    "circle"   
[49393] "light"     "light"     "light"     "formation" "fireball"  "fireball" 
[49399] "changing"  "light"     "oval"      "sphere"    "circle"    "light"    
[49405] "circle"    "light"     "light"     "other"     "disk"      "fireball" 
[49411] "fireball"  "fireball"  "other"     "sphere"    "fireball"  "light"    
[49417] "fireball"  "cylinder"  "light"     "sphere"    "oval"      "circle"   
[49423] "sphere"    "formation" "other"     "rectangle" "triangle"  "oval"     
[49429] "circle"    "cigar"     NA          NA          NA          "triangle" 
[49435] "circle"    "light"     "other"     "cigar"     NA          "disk"     
[49441] "light"     "diamond"   "light"     NA          "cigar"     "fireball" 
[49447] "light"     "light"     "cigar"     "circle"    "disk"      "disk"     
[49453] "formation" "triangle"  "oval"      NA          "light"     "light"    
[49459] "formation" "diamond"   "diamond"   "circle"    "circle"    "light"    
[49465] "sphere"    "unknown"   "egg"       "disk"      "circle"    "other"    
[49471] "cigar"     "triangle"  "circle"    "light"     "unknown"   "cigar"    
[49477] "other"     "sphere"    "sphere"    "unknown"   "other"     "oval"     
[49483] "sphere"    "light"     "circle"    "light"     "light"     "circle"   
[49489] "disk"      "formation" "circle"    "triangle"  "fireball"  "triangle" 
[49495] "oval"      "unknown"   "circle"    "light"     "changing"  "triangle" 
[49501] "unknown"   "other"     "unknown"   "disk"      "teardrop"  "light"    
[49507] "triangle"  "circle"    "fireball"  "rectangle" "sphere"    "sphere"   
[49513] "light"     "oval"      "circle"    "oval"      "light"     "light"    
[49519] "light"     "circle"    "circle"    "circle"    "other"     "unknown"  
[49525] "sphere"    "triangle"  "fireball"  "unknown"   "disk"      "circle"   
[49531] "other"     "light"     "fireball"  "light"     "light"     "light"    
[49537] "light"     "changing"  NA          "cigar"     "circle"    "circle"   
[49543] "circle"    "fireball"  "oval"      "light"     "oval"      "other"    
[49549] "egg"       "fireball"  "light"     "light"     "sphere"    "disk"     
[49555] "light"     "light"     "light"     "other"     "light"     "fireball" 
[49561] "light"     "other"     "fireball"  "disk"      "sphere"    "circle"   
[49567] "circle"    "fireball"  "unknown"   "fireball"  "fireball"  "other"    
[49573] "circle"    "light"     "light"     "unknown"   "disk"      "disk"     
[49579] "cigar"     "formation" "disk"      "chevron"   "circle"    "triangle" 
[49585] "unknown"   NA          NA          NA          NA          NA         
[49591] "cylinder"  "light"     "light"     "light"     "rectangle" "fireball" 
[49597] "changing"  "flash"     "unknown"   "formation" "teardrop"  "egg"      
[49603] "light"     "changing"  "unknown"   "fireball"  "triangle"  "light"    
[49609] "disk"      "chevron"   "light"     "circle"    "oval"      "triangle" 
[49615] "disk"      "unknown"   "triangle"  "changing"  "circle"    "disk"     
[49621] "cylinder"  "triangle"  "formation" "triangle"  "formation" "formation"
[49627] "sphere"    "changing"  "light"     "circle"    "light"     "fireball" 
[49633] "light"     "light"     "light"     "disk"      "unknown"   "cigar"    
[49639] "disk"      "sphere"    "sphere"    "light"     "triangle"  "light"    
[49645] "triangle"  "triangle"  "light"     "unknown"   "triangle"  "sphere"   
[49651] "circle"    "oval"      "flash"     "light"     "sphere"    NA         
[49657] "flash"     "triangle"  "triangle"  "circle"    "sphere"    "circle"   
[49663] "changing"  "circle"    "formation" "rectangle" "triangle"  "flash"    
[49669] "flash"     "diamond"   "triangle"  "circle"    "cross"     "disk"     
[49675] "unknown"   "cigar"     "light"     "light"     "light"     "light"    
[49681] "unknown"   "light"     "oval"      "circle"    "unknown"   "circle"   
[49687] "light"     "light"     "circle"    "light"     "circle"    "other"    
[49693] "circle"    "unknown"   "changing"  "sphere"    "triangle"  "cylinder" 
[49699] "circle"    "unknown"   "sphere"    "light"     "changing"  "rectangle"
[49705] "disk"      "fireball"  "fireball"  "fireball"  "fireball"  "unknown"  
[49711] "other"     "disk"      "unknown"   "changing"  "light"     "unknown"  
[49717] "light"     "flash"     "changing"  "light"     "light"     "light"    
[49723] "light"     "circle"    "circle"    "cigar"     "oval"      "light"    
[49729] "cylinder"  "circle"    "circle"    "oval"      "light"     "sphere"   
[49735] "cylinder"  "changing"  "fireball"  "circle"    "triangle"  "unknown"  
[49741] "light"     "triangle"  "light"     "flash"     "triangle"  "disk"     
[49747] "light"     "fireball"  "fireball"  "fireball"  "circle"    "other"    
[49753] "light"     "light"     "sphere"    "light"     "cigar"     "fireball" 
[49759] "fireball"  "fireball"  NA          NA          NA          NA         
[49765] "sphere"    "oval"      "light"     "triangle"  "sphere"    "disk"     
[49771] "oval"      "cigar"     "cigar"     "triangle"  "disk"      "triangle" 
[49777] "formation" "sphere"    "fireball"  "disk"      "formation" "light"    
[49783] "fireball"  "teardrop"  "sphere"    "changing"  "light"     "oval"     
[49789] "flash"     "disk"      "light"     "other"     "triangle"  "teardrop" 
[49795] "sphere"    "sphere"    "cross"     "sphere"    "cigar"     "light"    
[49801] "changing"  "light"     "light"     "other"     "light"     "sphere"   
[49807] "triangle"  "light"     "unknown"   "circle"    "light"     "formation"
[49813] "other"     "chevron"   "disk"      "disk"      "sphere"    "unknown"  
[49819] "light"     "oval"      "sphere"    "other"     "cigar"     "fireball" 
[49825] "other"     "flash"     "light"     "triangle"  "changing"  "light"    
[49831] "unknown"   "sphere"    "light"     "circle"    "cigar"     "circle"   
[49837] "unknown"   "light"     "other"     "sphere"    "flash"     "disk"     
[49843] "sphere"    "cigar"     "sphere"    "formation" "unknown"   "formation"
[49849] "disk"      "other"     "disk"      "disk"      "unknown"   "diamond"  
[49855] "light"     "disk"      "circle"    "unknown"   "unknown"   "circle"   
[49861] "chevron"   "formation" "formation" "light"     "sphere"    "light"    
[49867] "triangle"  "other"     "other"     "fireball"  "light"     "changing" 
[49873] "sphere"    "unknown"   "changing"  "light"     "circle"    "oval"     
[49879] "oval"      "cone"      "light"     "rectangle" "light"     "unknown"  
[49885] "light"     "circle"    "triangle"  "triangle"  "light"     "circle"   
[49891] "formation" "light"     "light"     "light"     "sphere"    "triangle" 
[49897] "triangle"  NA          "triangle"  "fireball"  "sphere"    NA         
[49903] "light"     "circle"    "light"     "flash"     "diamond"   "unknown"  
[49909] "circle"    "unknown"   "disk"      "light"     "light"     "triangle" 
[49915] "light"     "light"     "disk"      "disk"      "rectangle" "disk"     
[49921] "other"     "triangle"  "cigar"     "disk"      "rectangle" "other"    
[49927] "unknown"   "fireball"  NA          NA          "sphere"    "fireball" 
[49933] "cigar"     "light"     "oval"      "unknown"   "sphere"    "circle"   
[49939] "cigar"     "cylinder"  "formation" "changing"  "formation" "oval"     
[49945] "light"     "disk"      "sphere"    "disk"      "cylinder"  "other"    
[49951] "flash"     "light"     "triangle"  "circle"    "oval"      "other"    
[49957] "triangle"  "sphere"    "other"     "other"     "triangle"  "triangle" 
[49963] "flash"     "triangle"  "disk"      "light"     "formation" "disk"     
[49969] "light"     "light"     "sphere"    "light"     "sphere"    "disk"     
[49975] NA          "sphere"    "unknown"   "light"     "fireball"  "flash"    
[49981] "circle"    "diamond"   "oval"      "disk"      "light"     "changing" 
[49987] "formation" "sphere"    "changing"  "disk"      "rectangle" "other"    
[49993] "light"     "chevron"   "disk"      "sphere"    "formation" "cylinder" 
[49999] "unknown"   "sphere"    "sphere"    "fireball"  "rectangle" "disk"     
[50005] "sphere"    "unknown"   "circle"    NA          "light"     "light"    
[50011] "triangle"  "oval"      "disk"      "other"     "disk"      "sphere"   
[50017] "cylinder"  "light"     "unknown"   "disk"      "other"     "unknown"  
[50023] "unknown"   "light"     NA          "unknown"   "sphere"    "sphere"   
[50029] "disk"      "chevron"   "oval"      "teardrop"  "sphere"    "other"    
[50035] "disk"      "circle"    "fireball"  "light"     "formation" "circle"   
[50041] "unknown"   "rectangle" "changing"  "circle"    "rectangle" "unknown"  
[50047] "unknown"   "circle"    "teardrop"  "oval"      "other"     "light"    
[50053] "triangle"  "light"     "disk"      "rectangle" "fireball"  "unknown"  
[50059] "light"     "light"     "light"     "fireball"  "fireball"  "unknown"  
[50065] "cigar"     "light"     "cylinder"  "fireball"  "changing"  "formation"
[50071] "fireball"  "circle"    "light"     "circle"    "fireball"  "circle"   
[50077] "cylinder"  "other"     "diamond"   "fireball"  "circle"    "fireball" 
[50083] "light"     "light"     "circle"    "light"     "light"     "light"    
[50089] "unknown"   "unknown"   "triangle"  "unknown"   "light"     "unknown"  
[50095] "oval"      "sphere"    "triangle"  "disk"      "disk"      "disk"     
[50101] "disk"      "other"     "light"     NA          "light"     "cone"     
[50107] "sphere"    "disk"      "triangle"  "cylinder"  "light"     "fireball" 
[50113] "light"     "circle"    "other"     "flash"     "light"     "formation"
[50119] "light"     "light"     "light"     "formation" "light"     "changing" 
[50125] "cigar"     "circle"    "egg"       "fireball"  "light"     "light"    
[50131] "disk"      "light"     "oval"      "disk"      "oval"      "sphere"   
[50137] "unknown"   "sphere"    "triangle"  "unknown"   "circle"    "triangle" 
[50143] "sphere"    "sphere"    "unknown"   "light"     "light"     "light"    
[50149] "unknown"   "oval"      "other"     "light"     "chevron"   "changing" 
[50155] "light"     "light"     "sphere"    "fireball"  "circle"    "disk"     
[50161] "oval"      "triangle"  "circle"    "fireball"  "light"     "egg"      
[50167] NA          "disk"      "triangle"  "circle"    "circle"    "triangle" 
[50173] "other"     "cone"      "light"     "other"     "light"     "light"    
[50179] "circle"    "light"     "triangle"  "light"     "sphere"    "disk"     
[50185] "sphere"    "circle"    "sphere"    "disk"      "light"     "oval"     
[50191] "sphere"    "formation" "sphere"    "triangle"  "light"     "light"    
[50197] "light"     "unknown"   "circle"    "light"     "circle"    "cylinder" 
[50203] "disk"      "other"     "fireball"  "sphere"    "circle"    "circle"   
[50209] "light"     "oval"      "light"     "flash"     "light"     "circle"   
[50215] "light"     "oval"      "light"     "unknown"   "flash"     "light"    
[50221] "light"     "light"     "egg"       "oval"      "circle"    "triangle" 
[50227] "fireball"  "other"     "circle"    "disk"      "circle"    "fireball" 
[50233] "circle"    "triangle"  "circle"    "circle"    "light"     "fireball" 
[50239] "sphere"    "unknown"   "sphere"    "circle"    "circle"    "fireball" 
[50245] "fireball"  "light"     "triangle"  NA          "fireball"  "oval"     
[50251] NA          NA          "light"     NA          "triangle"  "other"    
[50257] "triangle"  "triangle"  NA          "flash"     "triangle"  "disk"     
[50263] NA          "light"     "circle"    "light"     "light"     "other"    
[50269] "unknown"   "other"     "disk"      "formation" "changing"  "cylinder" 
[50275] "light"     "teardrop"  "sphere"    "triangle"  "light"     "oval"     
[50281] "cigar"     "oval"      "sphere"    "sphere"    "unknown"   "light"    
[50287] "sphere"    "light"     "light"     "oval"      "disk"      "circle"   
[50293] "light"     "chevron"   "sphere"    "sphere"    "oval"      "circle"   
[50299] "unknown"   "unknown"   "disk"      "oval"      "triangle"  "formation"
[50305] "circle"    "cone"      "sphere"    "triangle"  "triangle"  "sphere"   
[50311] "triangle"  "unknown"   "flash"     "light"     "disk"      "light"    
[50317] "triangle"  "triangle"  "light"     "other"     "light"     "light"    
[50323] "oval"      "oval"      "sphere"    "teardrop"  "light"     "light"    
[50329] "other"     "circle"    "unknown"   NA          "changing"  "circle"   
[50335] "cigar"     "flash"     "unknown"   "unknown"   "sphere"    "fireball" 
[50341] "circle"    "unknown"   "triangle"  "unknown"   "other"     "disk"     
[50347] NA          "changing"  "diamond"   "unknown"   "light"     "light"    
[50353] "light"     "light"     "circle"    "unknown"   "light"     "oval"     
[50359] "sphere"    "rectangle" "unknown"   "triangle"  "egg"       "light"    
[50365] "fireball"  "sphere"    "light"     "cylinder"  "rectangle" "fireball" 
[50371] "other"     "fireball"  "triangle"  "fireball"  "fireball"  "triangle" 
[50377] "light"     "teardrop"  "other"     "fireball"  "light"     "fireball" 
[50383] "triangle"  "unknown"   "cylinder"  "triangle"  "light"     "sphere"   
[50389] "circle"    "formation" "unknown"   "triangle"  "light"     "sphere"   
[50395] "circle"    "light"     "sphere"    "fireball"  "egg"       "circle"   
[50401] "unknown"   "light"     "sphere"    "changing"  "sphere"    "light"    
[50407] "sphere"    "light"     "circle"    "circle"    "sphere"    "light"    
[50413] "teardrop"  "circle"    "fireball"  "fireball"  "light"     "sphere"   
[50419] "oval"      "fireball"  "unknown"   "triangle"  "formation" "circle"   
[50425] "disk"      "unknown"   "triangle"  "triangle"  "disk"      NA         
[50431] "light"     NA          "triangle"  "disk"      "unknown"   "changing" 
[50437] "fireball"  "disk"      "fireball"  "sphere"    "diamond"   "other"    
[50443] "triangle"  "sphere"    "circle"    "circle"    "triangle"  "other"    
[50449] "disk"      "sphere"    "disk"      "other"     "fireball"  "circle"   
[50455] "light"     "fireball"  "light"     "other"     "egg"       "circle"   
[50461] "light"     "light"     "oval"      "disk"      "disk"      "light"    
[50467] "formation" "light"     "light"     "unknown"   "unknown"   "fireball" 
[50473] "other"     "oval"      "other"     "oval"      "sphere"    "diamond"  
[50479] "light"     "light"     "triangle"  "light"     "flash"     "other"    
[50485] "egg"       "fireball"  "sphere"    "light"     "light"     "circle"   
[50491] "light"     "other"     "fireball"  "oval"      "light"     "other"    
[50497] "fireball"  "oval"      "fireball"  "light"     "light"     "sphere"   
[50503] "other"     "circle"    "light"     "disk"      "circle"    "light"    
[50509] "diamond"   "sphere"    "oval"      "formation" "disk"      "circle"   
[50515] "light"     "unknown"   "formation" "light"     "light"     "light"    
[50521] "circle"    "sphere"    "other"     "oval"      "other"     "other"    
[50527] "changing"  "light"     "circle"    "circle"    "light"     "light"    
[50533] "circle"    NA          "oval"      "unknown"   "cylinder"  "fireball" 
[50539] "other"     "unknown"   "other"     NA          "circle"    "sphere"   
[50545] "circle"    "light"     "sphere"    "fireball"  "chevron"   "unknown"  
[50551] "oval"      "fireball"  "circle"    "light"     "circle"    "fireball" 
[50557] "fireball"  "light"     "other"     "formation" "fireball"  "sphere"   
[50563] "light"     "fireball"  "triangle"  "unknown"   "fireball"  "oval"     
[50569] "triangle"  "disk"      "fireball"  "rectangle" "fireball"  "cylinder" 
[50575] "fireball"  "circle"    "flash"     "light"     "fireball"  "other"    
[50581] "fireball"  "formation" "fireball"  "unknown"   "light"     "other"    
[50587] "circle"    "fireball"  "unknown"   "triangle"  "other"     "triangle" 
[50593] "triangle"  "circle"    "light"     "fireball"  "sphere"    "circle"   
[50599] "unknown"   "cigar"     "other"     "sphere"    "triangle"  "changing" 
[50605] "circle"    "light"     "disk"      "formation" "fireball"  "sphere"   
[50611] "oval"      "cigar"     "circle"    "diamond"   "light"     "disk"     
[50617] "circle"    "disk"      "other"     "sphere"    "disk"      "unknown"  
[50623] "other"     "chevron"   "light"     NA          "light"     "cigar"    
[50629] "disk"      "unknown"   "flash"     "cone"      "triangle"  "circle"   
[50635] NA          "fireball"  NA          NA          "triangle"  "egg"      
[50641] "light"     "other"     "light"     "disk"      "rectangle" "other"    
[50647] "light"     "light"     "chevron"   "other"     "sphere"    "light"    
[50653] "light"     "light"     "other"     "changing"  "sphere"    "light"    
[50659] "egg"       "disk"      "light"     "fireball"  "diamond"   "oval"     
[50665] "light"     "triangle"  "other"     "unknown"   NA          "disk"     
[50671] NA          "disk"      NA          "cigar"     "light"     "teardrop" 
[50677] "disk"      "sphere"    "unknown"   "formation" "diamond"   "fireball" 
[50683] "light"     "light"     "other"     "fireball"  "unknown"   "oval"     
[50689] "cigar"     "light"     "sphere"    "light"     "unknown"   "light"    
[50695] "sphere"    "teardrop"  NA          "changing"  "cylinder"  "rectangle"
[50701] "sphere"    "fireball"  "disk"      "cigar"     "rectangle" "triangle" 
[50707] "triangle"  "light"     "triangle"  "triangle"  "unknown"   "circle"   
[50713] "sphere"    "light"     "unknown"   "light"     "circle"    "other"    
[50719] "cigar"     "light"     "light"     "other"     "other"     "cigar"    
[50725] "circle"    "circle"    "light"     "triangle"  NA          "chevron"  
[50731] "light"     "formation" "circle"    "light"     "fireball"  "light"    
[50737] "unknown"   "circle"    "sphere"    "other"     "light"     "triangle" 
[50743] "unknown"   "light"     "light"     "circle"    "other"     "rectangle"
[50749] "triangle"  "sphere"    "other"     "light"     "light"     "light"    
[50755] "triangle"  "unknown"   "light"     "light"     "rectangle" "rectangle"
[50761] "formation" "light"     "other"     NA          "formation" "triangle" 
[50767] "unknown"   "fireball"  "light"     "oval"      "light"     "oval"     
[50773] "light"     "light"     "fireball"  "triangle"  "formation" "light"    
[50779] "triangle"  "unknown"   "circle"    "chevron"   "fireball"  "light"    
[50785] "fireball"  "unknown"   "sphere"    "other"     "light"     "oval"     
[50791] "oval"      "fireball"  "fireball"  "other"     "triangle"  "sphere"   
[50797] "circle"    "triangle"  "sphere"    "light"     "circle"    "other"    
[50803] "fireball"  "sphere"    "changing"  "fireball"  "fireball"  "oval"     
[50809] "flash"     "circle"    "oval"      "other"     "disk"      "changing" 
[50815] "sphere"    "light"     "circle"    "oval"      "circle"    "light"    
[50821] "triangle"  NA          "triangle"  "oval"      "unknown"   "circle"   
[50827] "fireball"  "light"     "triangle"  "sphere"    "triangle"  "light"    
[50833] "unknown"   "fireball"  "teardrop"  "rectangle" "circle"    "cigar"    
[50839] "circle"    "circle"    "sphere"    NA          "changing"  "triangle" 
[50845] "triangle"  "disk"      "triangle"  "triangle"  "circle"    "fireball" 
[50851] "light"     "light"     "sphere"    "light"     "triangle"  "disk"     
[50857] "light"     "disk"      "triangle"  NA          "light"     NA         
[50863] "light"     "light"     NA          "disk"      "sphere"    "triangle" 
[50869] "egg"       "disk"      "light"     "other"     "changing"  "circle"   
[50875] "triangle"  "light"     "triangle"  "light"     "unknown"   "light"    
[50881] "disk"      "light"     "other"     "disk"      "rectangle" "changing" 
[50887] "other"     "fireball"  "formation" "unknown"   "teardrop"  "light"    
[50893] "fireball"  "disk"      "disk"      "circle"    "light"     "sphere"   
[50899] "teardrop"  "triangle"  "cigar"     "diamond"   "fireball"  "circle"   
[50905] "light"     "flash"     "other"     "other"     "diamond"   "oval"     
[50911] "oval"      "other"     "sphere"    "unknown"   "changing"  "fireball" 
[50917] "disk"      "sphere"    "unknown"   "changing"  "light"     "triangle" 
[50923] "cigar"     "disk"      "triangle"  "light"     "unknown"   "circle"   
[50929] "formation" "light"     NA          "light"     "unknown"   "cigar"    
[50935] "triangle"  "cylinder"  "other"     "circle"    "sphere"    "sphere"   
[50941] "formation" "diamond"   "light"     "light"     "circle"    "light"    
[50947] "light"     "triangle"  "formation" "cone"      "cigar"     "cone"     
[50953] "oval"      "other"     "changing"  "triangle"  "rectangle" "light"    
[50959] NA          "light"     "diamond"   "triangle"  "changing"  "oval"     
[50965] "teardrop"  "light"     "triangle"  "disk"      "light"     NA         
[50971] "light"     "sphere"    "disk"      "oval"      "triangle"  "unknown"  
[50977] "triangle"  "light"     "light"     "light"     "unknown"   "circle"   
[50983] "oval"      "triangle"  "triangle"  "light"     "fireball"  "triangle" 
[50989] "triangle"  "chevron"   "circle"    "fireball"  "unknown"   "unknown"  
[50995] "triangle"  "unknown"   "light"     "fireball"  "diamond"   "light"    
[51001] "unknown"   "cigar"     "sphere"    "oval"      "circle"    "sphere"   
[51007] "light"     "disk"      "disk"      "teardrop"  "light"     "formation"
[51013] "changing"  "light"     "disk"      "triangle"  "fireball"  "unknown"  
[51019] "light"     "light"     "circle"    "cylinder"  "light"     "diamond"  
[51025] "triangle"  "fireball"  "fireball"  "other"     "fireball"  "oval"     
[51031] "sphere"    "circle"    "circle"    "disk"      "unknown"   "light"    
[51037] "triangle"  "light"     "formation" "unknown"   "rectangle" "formation"
[51043] "oval"      "formation" NA          NA          "other"     NA         
[51049] "unknown"   NA          NA          NA          NA          NA         
[51055] "disk"      "triangle"  "flash"     "changing"  "sphere"    "triangle" 
[51061] "egg"       "changing"  "other"     "disk"      "rectangle" "other"    
[51067] "unknown"   "other"     NA          NA          "triangle"  "diamond"  
[51073] "triangle"  "light"     "triangle"  "other"     "chevron"   "triangle" 
[51079] "changing"  "other"     NA          "disk"      "diamond"   "circle"   
[51085] "unknown"   "rectangle" "triangle"  "light"     "triangle"  "cigar"    
[51091] "light"     "unknown"   "oval"      "triangle"  "light"     "triangle" 
[51097] "sphere"    "sphere"    "light"     "other"     "other"     "other"    
[51103] "light"     "light"     "unknown"   "disk"      "circle"    "disk"     
[51109] "sphere"    "light"     "light"     "fireball"  "light"     "light"    
[51115] "circle"    "triangle"  "triangle"  "unknown"   "circle"    "disk"     
[51121] "oval"      "formation" "sphere"    "unknown"   "unknown"   "chevron"  
[51127] "triangle"  "light"     "circle"    "light"     "triangle"  "light"    
[51133] "triangle"  "light"     "other"     "sphere"    NA          "other"    
[51139] "light"     "light"     "unknown"   "circle"    "cigar"     "light"    
[51145] "light"     "diamond"   "circle"    "oval"      "light"     "light"    
[51151] "light"     "fireball"  "light"     "disk"      "light"     "light"    
[51157] "disk"      "flash"     "unknown"   "changing"  "circle"    "unknown"  
[51163] "light"     "triangle"  "oval"      "other"     "triangle"  "circle"   
[51169] "formation" "unknown"   "other"     "formation" "oval"      "changing" 
[51175] "egg"       "sphere"    "oval"      "oval"      "egg"       "other"    
[51181] "light"     "formation" "circle"    "formation" "diamond"   "light"    
[51187] "disk"      "oval"      "circle"    "circle"    "circle"    "flash"    
[51193] "unknown"   "light"     "fireball"  "formation" "fireball"  "circle"   
[51199] "unknown"   "triangle"  "disk"      "oval"      NA          "fireball" 
[51205] "fireball"  "circle"    "unknown"   "fireball"  NA          "unknown"  
[51211] "fireball"  "sphere"    "triangle"  "circle"    "light"     "cigar"    
[51217] "light"     "oval"      "sphere"    NA          NA          NA         
[51223] "other"     "other"     "triangle"  "triangle"  "light"     "triangle" 
[51229] "other"     "light"     "other"     "changing"  "light"     "triangle" 
[51235] "disk"      "disk"      "triangle"  "triangle"  "fireball"  "egg"      
[51241] "other"     "other"     "triangle"  "cigar"     "sphere"    "circle"   
[51247] NA          "sphere"    "cone"      "light"     "triangle"  "circle"   
[51253] "circle"    "triangle"  "circle"    "sphere"    "light"     "light"    
[51259] "sphere"    "disk"      "cigar"     "other"     "other"     "triangle" 
[51265] "formation" "triangle"  "light"     "triangle"  "sphere"    "triangle" 
[51271] "light"     "triangle"  "unknown"   NA          "triangle"  "unknown"  
[51277] "unknown"   "cigar"     "unknown"   "light"     "unknown"   "circle"   
[51283] "cigar"     "sphere"    "disk"      "circle"    "formation" "light"    
[51289] "cigar"     "light"     "sphere"    "circle"    "light"     "circle"   
[51295] "circle"    "sphere"    "disk"      "disk"      "light"     "triangle" 
[51301] "unknown"   "sphere"    "fireball"  "other"     "triangle"  "light"    
[51307] "unknown"   "cigar"     "formation" "flash"     "disk"      "circle"   
[51313] "light"     NA          "cigar"     "circle"    "light"     "other"    
[51319] "triangle"  "light"     "light"     "fireball"  "cylinder"  "other"    
[51325] NA          "circle"    "triangle"  "circle"    "unknown"   "unknown"  
[51331] "light"     "light"     "diamond"   NA          "changing"  "diamond"  
[51337] "light"     "fireball"  "sphere"    "triangle"  "sphere"    "light"    
[51343] "light"     "fireball"  "unknown"   "fireball"  "light"     "light"    
[51349] "cone"      "disk"      "triangle"  "circle"    "egg"       "unknown"  
[51355] "light"     "triangle"  "teardrop"  "light"     "fireball"  "circle"   
[51361] "changing"  "light"     "triangle"  "teardrop"  "rectangle" "light"    
[51367] "fireball"  "disk"      "light"     "cigar"     "light"     NA         
[51373] NA          NA          NA          NA          "light"     "light"    
[51379] "light"     "light"     "disk"      "sphere"    "light"     "sphere"   
[51385] "sphere"    "circle"    "disk"      "circle"    "other"     "cigar"    
[51391] "oval"      "light"     NA          "flash"     "triangle"  "light"    
[51397] "light"     "circle"    "cigar"     "light"     "light"     "other"    
[51403] "rectangle" "flash"     "formation" "light"     "triangle"  "cylinder" 
[51409] "disk"      "light"     "other"     "triangle"  "unknown"   "oval"     
[51415] "teardrop"  "cylinder"  "light"     "disk"      "circle"    "light"    
[51421] "triangle"  "triangle"  "chevron"   "unknown"   "cigar"     "light"    
[51427] "cigar"     "light"     "light"     NA          "light"     "light"    
[51433] "light"     "cigar"     "cigar"     "triangle"  NA          "triangle" 
[51439] "oval"      "light"     "diamond"   "flash"     "light"     "other"    
[51445] "light"     "circle"    "unknown"   "diamond"   "diamond"   "other"    
[51451] "unknown"   "oval"      "light"     "rectangle" "light"     "disk"     
[51457] "triangle"  "oval"      "formation" "light"     "disk"      NA         
[51463] "changing"  "circle"    "changing"  "oval"      "formation" "circle"   
[51469] "triangle"  "light"     "unknown"   "flash"     "fireball"  "other"    
[51475] "light"     "light"     "light"     "light"     "fireball"  "cigar"    
[51481] "disk"      "other"     "light"     "light"     "flash"     "triangle" 
[51487] "diamond"   "light"     "other"     NA          "unknown"   "disk"     
[51493] "teardrop"  "light"     "rectangle" "other"     "light"     "unknown"  
[51499] "light"     "oval"      "rectangle" "cross"     "fireball"  "light"    
[51505] "light"     "oval"      "triangle"  "fireball"  "cylinder"  "other"    
[51511] "triangle"  "circle"    "oval"      "circle"    "disk"      "disk"     
[51517] "circle"    "cigar"     "cigar"     "unknown"   "sphere"    NA         
[51523] "cigar"     "light"     "disk"      "circle"    "disk"      "disk"     
[51529] "light"     "disk"      "disk"      "disk"      "triangle"  "light"    
[51535] "cigar"     "oval"      NA          "light"     "circle"    "sphere"   
[51541] "disk"      "cigar"     "disk"      "disk"      "circle"    "sphere"   
[51547] "disk"      "other"     "cigar"     "unknown"   "other"     "light"    
[51553] NA          "disk"      "disk"      "other"     "chevron"   "other"    
[51559] "flash"     NA          "disk"      "circle"    NA          "diamond"  
[51565] "oval"      "sphere"    "egg"       "disk"      "cigar"     "triangle" 
[51571] "diamond"   "sphere"    "disk"      "disk"      "light"     "other"    
[51577] "disk"      "light"     "oval"      "unknown"   "unknown"   "circle"   
[51583] "chevron"   "circle"    "flash"     "changing"  NA          "oval"     
[51589] "triangle"  NA          "triangle"  "disk"      "sphere"    "diamond"  
[51595] "disk"      "other"     "triangle"  "triangle"  "light"     "other"    
[51601] "light"     "light"     "circle"    "other"     "disk"      "sphere"   
[51607] "circle"    "light"     "light"     "triangle"  "sphere"    "triangle" 
[51613] "disk"      "light"     "circle"    "circle"    "light"     "triangle" 
[51619] "triangle"  "circle"    "oval"      "circle"    "unknown"   "light"    
[51625] "triangle"  "cylinder"  "unknown"   "flash"     "light"     "circle"   
[51631] "circle"    "disk"      "light"     "disk"      "disk"      "light"    
[51637] "triangle"  "unknown"   "disk"      "egg"       "triangle"  "light"    
[51643] "circle"    "light"     "triangle"  "light"     "light"     NA         
[51649] "cone"      "light"     "triangle"  "oval"      NA          "light"    
[51655] "light"     "light"     "egg"       "changing"  "sphere"    "changing" 
[51661] "cone"      "triangle"  "light"     "sphere"    "formation" "circle"   
[51667] "triangle"  "sphere"    "light"     "oval"      "other"     "cigar"    
[51673] "other"     "sphere"    "other"     "cylinder"  "disk"      "changing" 
[51679] "flash"     "unknown"   "unknown"   "unknown"   "other"     "unknown"  
[51685] "triangle"  "changing"  "changing"  "oval"      "light"     "triangle" 
[51691] "light"     "triangle"  "light"     "disk"      "oval"      "cylinder" 
[51697] "fireball"  "light"     "light"     "teardrop"  "unknown"   "circle"   
[51703] "light"     "formation" "sphere"    "unknown"   "rectangle" "sphere"   
[51709] "circle"    "diamond"   "circle"    "circle"    "triangle"  "circle"   
[51715] "light"     "light"     "sphere"    "cylinder"  "unknown"   "cigar"    
[51721] "sphere"    "circle"    "cigar"     "circle"    "light"     "fireball" 
[51727] "cylinder"  "other"     "unknown"   "oval"      "triangle"  "light"    
[51733] "changing"  "cigar"     "circle"    "circle"    "triangle"  "circle"   
[51739] "light"     "light"     "triangle"  "light"     "sphere"    "sphere"   
[51745] "circle"    "triangle"  "circle"    "changing"  "circle"    "circle"   
[51751] "oval"      "triangle"  "changing"  "unknown"   "light"     "oval"     
[51757] "changing"  "circle"    "unknown"   "egg"       "sphere"    "fireball" 
[51763] "triangle"  "light"     "fireball"  NA          "fireball"  "circle"   
[51769] "circle"    "circle"    "circle"    "sphere"    "other"     "unknown"  
[51775] "other"     "oval"      "circle"    "formation" "light"     "circle"   
[51781] "sphere"    "light"     "fireball"  "fireball"  "circle"    "flash"    
[51787] "light"     "light"     "disk"      "fireball"  "circle"    "circle"   
[51793] "flash"     "formation" "fireball"  "light"     "unknown"   "disk"     
[51799] "unknown"   "disk"      "circle"    "circle"    "disk"      "sphere"   
[51805] "light"     "diamond"   "triangle"  "disk"      "disk"      "other"    
[51811] "disk"      "disk"      "other"     "oval"      "fireball"  "triangle" 
[51817] NA          NA          NA          NA          NA          NA         
[51823] "fireball"  NA          NA          NA          NA          "disk"     
[51829] "other"     "sphere"    "sphere"    "cylinder"  "other"     "triangle" 
[51835] "circle"    "changing"  "disk"      "light"     "light"     "triangle" 
[51841] "light"     "triangle"  "flash"     "sphere"    "disk"      "circle"   
[51847] "sphere"    "other"     "light"     "other"     "circle"    "other"    
[51853] "disk"      "triangle"  "circle"    "oval"      "other"     "rectangle"
[51859] "light"     "rectangle" "changing"  "egg"       "disk"      "other"    
[51865] "changing"  "disk"      "other"     "triangle"  "oval"      "light"    
[51871] "light"     "unknown"   "light"     "other"     "light"     "disk"     
[51877] "light"     "other"     "triangle"  "light"     "circle"    "circle"   
[51883] "triangle"  "fireball"  "fireball"  "flash"     "circle"    "light"    
[51889] "triangle"  "circle"    NA          "fireball"  "light"     "other"    
[51895] "flash"     "triangle"  "circle"    "changing"  "circle"    NA         
[51901] "sphere"    "sphere"    "light"     "sphere"    "light"     "light"    
[51907] "light"     "flash"     "cigar"     "disk"      "other"     "light"    
[51913] "unknown"   "light"     "cross"     "cigar"     "triangle"  "sphere"   
[51919] "oval"      "sphere"    "teardrop"  "cone"      "sphere"    "oval"     
[51925] "oval"      "flash"     "unknown"   "unknown"   "disk"      "circle"   
[51931] "circle"    "light"     "triangle"  "triangle"  "unknown"   "light"    
[51937] "triangle"  "light"     "unknown"   "sphere"    "sphere"    "other"    
[51943] "other"     "cigar"     "fireball"  "unknown"   "circle"    "changing" 
[51949] "unknown"   "light"     "light"     "unknown"   "light"     "sphere"   
[51955] "unknown"   "disk"      "disk"      NA          "circle"    "light"    
[51961] NA          "circle"    "light"     "circle"    "light"     "other"    
[51967] "cigar"     "sphere"    "light"     "sphere"    "fireball"  "unknown"  
[51973] "triangle"  "unknown"   "fireball"  "formation" "light"     "triangle" 
[51979] "cigar"     "triangle"  "disk"      "fireball"  "disk"      "unknown"  
[51985] "disk"      "cigar"     "disk"      "circle"    "circle"    "disk"     
[51991] "fireball"  NA          "light"     "circle"    NA          "unknown"  
[51997] "fireball"  "rectangle" "disk"      "disk"      "oval"      "unknown"  
[52003] "disk"      "cigar"     NA          "circle"    "fireball"  NA         
[52009] "disk"      "disk"      "cylinder"  "light"     "disk"      "disk"     
[52015] "disk"      "light"     "circle"    "circle"    "disk"      "circle"   
[52021] "egg"       NA          "circle"    "formation" "other"     "cylinder" 
[52027] "disk"      "light"     NA          "disk"      "light"     "formation"
[52033] "circle"    "oval"      "oval"      "light"     "circle"    "circle"   
[52039] "unknown"   "cylinder"  "light"     "cigar"     "oval"      "other"    
[52045] "unknown"   "disk"      "cigar"     "cylinder"  "cigar"     "disk"     
[52051] "sphere"    "disk"      "oval"      "changing"  "other"     "disk"     
[52057] "disk"      NA          "other"     "sphere"    "unknown"   "disk"     
[52063] "sphere"    "circle"    "light"     "disk"      "unknown"   "cigar"    
[52069] "other"     "cigar"     "disk"      "cigar"     "triangle"  "formation"
[52075] "triangle"  "light"     "sphere"    "light"     "disk"      "unknown"  
[52081] "disk"      "light"     "light"     NA          "disk"      "circle"   
[52087] "disk"      "sphere"    "disk"      "cylinder"  "disk"      "oval"     
[52093] "cylinder"  "light"     "disk"      "light"     "sphere"    "light"    
[52099] NA          "oval"      "sphere"    "light"     "sphere"    "disk"     
[52105] "light"     "other"     "disk"      "disk"      "disk"      "disk"     
[52111] "unknown"   "disk"      NA          "other"     "disk"      "other"    
[52117] "disk"      "disk"      "triangle"  "disk"      "disk"      "disk"     
[52123] "light"     "sphere"    "disk"      "cigar"     "light"     "disk"     
[52129] "disk"      "cylinder"  "disk"      "circle"    "oval"      "light"    
[52135] "other"     "disk"      "light"     "light"     "circle"    "cigar"    
[52141] "formation" "disk"      "unknown"   "light"     "other"     "cigar"    
[52147] "disk"      NA          NA          "circle"    "sphere"    "disk"     
[52153] "triangle"  "oval"      "oval"      "fireball"  "light"     "circle"   
[52159] "fireball"  "circle"    "sphere"    "cigar"     "other"     "triangle" 
[52165] "light"     "fireball"  "disk"      "circle"    "changing"  "light"    
[52171] "cigar"     "cigar"     "circle"    "fireball"  "other"     "sphere"   
[52177] "oval"      "formation" "light"     "sphere"    "disk"      "light"    
[52183] "disk"      "other"     "unknown"   "disk"      "unknown"   "light"    
[52189] "rectangle" "other"     "light"     "unknown"   "circle"    "disk"     
[52195] "oval"      NA          "disk"      "disk"      "oval"      "oval"     
[52201] "disk"      "circle"    "circle"    "circle"    "oval"      "light"    
[52207] "disk"      "unknown"   "disk"      "light"     "disk"      "light"    
[52213] "flash"     "disk"      "disk"      "disk"      "disk"      "cigar"    
[52219] "other"     "light"     NA          "circle"    "cylinder"  "disk"     
[52225] "oval"      "light"     "sphere"    "disk"      "cigar"     "light"    
[52231] "unknown"   "circle"    "disk"      "sphere"    "light"     "triangle" 
[52237] "light"     "cigar"     "circle"    "circle"    "other"     "other"    
[52243] "fireball"  "circle"    "light"     "fireball"  "unknown"   "oval"     
[52249] "sphere"    "oval"      "circle"    "light"     "fireball"  "sphere"   
[52255] "light"     "circle"    "disk"      NA          "circle"    "disk"     
[52261] "fireball"  "disk"      "oval"      "circle"    "oval"      "triangle" 
[52267] "triangle"  "light"     "unknown"   "light"     "circle"    "circle"   
[52273] "egg"       "other"     "cylinder"  "circle"    "fireball"  "other"    
[52279] "disk"      "fireball"  "unknown"   "other"     "unknown"   "chevron"  
[52285] "sphere"    "unknown"   "light"     "cigar"     "circle"    "disk"     
[52291] "disk"      NA          "disk"      "cigar"     "triangle"  "oval"     
[52297] "circle"    "light"     "changing"  "disk"      "disk"      NA         
[52303] NA          "circle"    "oval"      "disk"      "light"     "oval"     
[52309] "disk"      "oval"      "unknown"   "fireball"  "sphere"    "sphere"   
[52315] "oval"      "oval"      "unknown"   "rectangle" "other"     "disk"     
[52321] "other"     "circle"    NA          "disk"      "triangle"  "light"    
[52327] "light"     "cigar"     "rectangle" "other"     "light"     "chevron"  
[52333] "oval"      "unknown"   "light"     "circle"    "oval"      "disk"     
[52339] "other"     "cylinder"  "oval"      "unknown"   "circle"    "triangle" 
[52345] "oval"      "triangle"  "disk"      "disk"      "triangle"  "rectangle"
[52351] "light"     "disk"      "flash"     "triangle"  "sphere"    "disk"     
[52357] "light"     "disk"      "light"     "disk"      "triangle"  "unknown"  
[52363] "changing"  "oval"      "circle"    "unknown"   NA          "sphere"   
[52369] "sphere"    NA          "cigar"     "triangle"  "egg"       "triangle" 
[52375] "cylinder"  "circle"    "light"     "cigar"     "fireball"  "disk"     
[52381] "circle"    "oval"      "oval"      "unknown"   "circle"    "oval"     
[52387] "disk"      "circle"    "circle"    "egg"       "oval"      "circle"   
[52393] "cigar"     "changing"  "diamond"   "disk"      "light"     "circle"   
[52399] "cigar"     "sphere"    "light"     "sphere"    "other"     "egg"      
[52405] "diamond"   "other"     "oval"      "fireball"  "circle"    "sphere"   
[52411] "oval"      "light"     "circle"    "triangle"  "other"     "circle"   
[52417] "oval"      "disk"      "disk"      "disk"      "unknown"   "unknown"  
[52423] "disk"      "oval"      "sphere"    "rectangle" "light"     "oval"     
[52429] "cylinder"  "cross"     "circle"    "circle"    "disk"      "disk"     
[52435] "cigar"     "light"     "oval"      "other"     "other"     "disk"     
[52441] "other"     "light"     "circle"    "light"     "sphere"    "circle"   
[52447] "rectangle" "light"     "rectangle" "egg"       "sphere"    "other"    
[52453] "circle"    "triangle"  "disk"      "other"     "cigar"     "circle"   
[52459] "disk"      "circle"    "sphere"    "oval"      "light"     "changing" 
[52465] "disk"      "circle"    "disk"      "other"     "disk"      "fireball" 
[52471] "circle"    "unknown"   "disk"      "disk"      "sphere"    "other"    
[52477] "triangle"  "triangle"  "sphere"    "cigar"     "triangle"  NA         
[52483] "other"     "unknown"   "other"     "light"     "light"     "unknown"  
[52489] "disk"      "circle"    "disk"      "light"     NA          "other"    
[52495] "disk"      "disk"      "fireball"  "cigar"     "chevron"   "fireball" 
[52501] "circle"    "disk"      "other"     "disk"      "disk"      "triangle" 
[52507] "sphere"    "chevron"   "light"     "triangle"  "light"     "circle"   
[52513] "oval"      "oval"      "triangle"  "triangle"  "cigar"     "disk"     
[52519] "formation" "other"     "disk"      "circle"    "formation" "circle"   
[52525] "cigar"     "light"     "light"     "chevron"   "teardrop"  "oval"     
[52531] "circle"    "disk"      "egg"       "other"     "oval"      "circle"   
[52537] "unknown"   "disk"      "disk"      "oval"      "formation" "sphere"   
[52543] "circle"    "disk"      "oval"      "sphere"    "disk"      "other"    
[52549] "circle"    "disk"      NA          "unknown"   "cylinder"  "oval"     
[52555] "circle"    "unknown"   "diamond"   "disk"      "sphere"    "egg"      
[52561] "sphere"    "triangle"  "fireball"  "cigar"     "rectangle" "light"    
[52567] "other"     "other"     "triangle"  "circle"    "circle"    "sphere"   
[52573] "sphere"    "cigar"     "fireball"  "disk"      "other"     "triangle" 
[52579] "other"     "triangle"  "teardrop"  "disk"      "disk"      "oval"     
[52585] "triangle"  "disk"      "sphere"    "unknown"   "sphere"    "other"    
[52591] "sphere"    "chevron"   "triangle"  "fireball"  "sphere"    "other"    
[52597] "flash"     "unknown"   "circle"    "formation" "other"     "sphere"   
[52603] "oval"      "egg"       "other"     "disk"      "triangle"  "other"    
[52609] "unknown"   "unknown"   "triangle"  "circle"    "light"     "triangle" 
[52615] NA          "triangle"  "light"     "light"     "circle"    "disk"     
[52621] "unknown"   "disk"      "other"     "other"     "egg"       "light"    
[52627] "unknown"   "cigar"     NA          "disk"      "other"     "oval"     
[52633] "disk"      "flash"     "formation" "fireball"  "formation" "unknown"  
[52639] "disk"      "light"     "light"     "fireball"  "egg"       "unknown"  
[52645] "unknown"   "sphere"    "sphere"    "circle"    "unknown"   "other"    
[52651] "disk"      "disk"      "circle"    "formation" "circle"    "sphere"   
[52657] "sphere"    "diamond"   NA          "unknown"   "light"     "other"    
[52663] "sphere"    "other"     "other"     "sphere"    "chevron"   "light"    
[52669] "cigar"     "unknown"   "rectangle" "disk"      "other"     "unknown"  
[52675] "triangle"  "triangle"  "unknown"   NA          "disk"      "fireball" 
[52681] "formation" "circle"    "disk"      "sphere"    "teardrop"  "oval"     
[52687] "diamond"   "light"     "disk"      "sphere"    "other"     "disk"     
[52693] "disk"      "rectangle" "triangle"  "cigar"     "unknown"   "light"    
[52699] "triangle"  "chevron"   "triangle"  "circle"    "disk"      NA         
[52705] "other"     NA          "disk"      "sphere"    "oval"      "disk"     
[52711] "cigar"     "disk"      "triangle"  "disk"      "circle"    "other"    
[52717] "circle"    "disk"      "disk"      "teardrop"  "cylinder"  "triangle" 
[52723] "triangle"  "triangle"  "light"     "disk"      "disk"      "triangle" 
[52729] "unknown"   "disk"      "unknown"   "other"     "light"     "cigar"    
[52735] "other"     "oval"      "sphere"    "cigar"     "triangle"  "fireball" 
[52741] "fireball"  "changing"  "circle"    "oval"      "oval"      "oval"     
[52747] "triangle"  "disk"      "disk"      "unknown"   "unknown"   "other"    
[52753] "flash"     "triangle"  "other"     "other"     "other"     "fireball" 
[52759] "cigar"     "sphere"    "disk"      "disk"      "cigar"     "triangle" 
[52765] "cylinder"  "oval"      "other"     "other"     "changing"  "unknown"  
[52771] "triangle"  "other"     "circle"    "light"     NA          "cross"    
[52777] "diamond"   "fireball"  "oval"      "oval"      "formation" NA         
[52783] "oval"      "egg"       "light"     "light"     "other"     "circle"   
[52789] "triangle"  "unknown"   "disk"      "formation" "unknown"   "oval"     
[52795] "circle"    "sphere"    "rectangle" "changing"  "rectangle" "triangle" 
[52801] "light"     "sphere"    "flash"     "triangle"  "disk"      "sphere"   
[52807] "light"     "light"     "triangle"  "triangle"  "triangle"  "disk"     
[52813] "oval"      "light"     "sphere"    "light"     "light"     "light"    
[52819] NA          "unknown"   "cigar"     "light"     "other"     NA         
[52825] "other"     "circle"    "other"     "triangle"  "changing"  "formation"
[52831] "circle"    "circle"    "sphere"    "oval"      "formation" "light"    
[52837] "fireball"  "other"     "other"     "oval"      "triangle"  "light"    
[52843] "triangle"  "disk"      "triangle"  "light"     "light"     "flash"    
[52849] "other"     "light"     "unknown"   "unknown"   "light"     "unknown"  
[52855] "unknown"   "rectangle" "triangle"  "fireball"  "triangle"  "other"    
[52861] "diamond"   "unknown"   "other"     "circle"    "light"     "triangle" 
[52867] "triangle"  "circle"    "triangle"  "cylinder"  "diamond"   "triangle" 
[52873] "other"     "disk"      "circle"    "triangle"  "cigar"     "oval"     
[52879] "sphere"    "disk"      "triangle"  "light"     "light"     "changing" 
[52885] "changing"  "disk"      "oval"      "light"     "fireball"  "triangle" 
[52891] "light"     "sphere"    "unknown"   "sphere"    "oval"      "triangle" 
[52897] "triangle"  "chevron"   "egg"       NA          "light"     "unknown"  
[52903] "other"     "triangle"  "disk"      NA          "circle"    "circle"   
[52909] "light"     "other"     "triangle"  "oval"      "triangle"  NA         
[52915] "disk"      "oval"      "oval"      NA          "other"     "sphere"   
[52921] "circle"    "chevron"   "flash"     "other"     "sphere"    "triangle" 
[52927] "other"     "triangle"  "light"     "triangle"  "chevron"   "other"    
[52933] "circle"    "other"     "other"     "formation" "unknown"   "triangle" 
[52939] "rectangle" "chevron"   "disk"      NA          "light"     "circle"   
[52945] "triangle"  "disk"      "oval"      "light"     "light"     "oval"     
[52951] "light"     "circle"    "triangle"  "other"     "disk"      "sphere"   
[52957] "disk"      "disk"      "triangle"  "oval"      "other"     "oval"     
[52963] "light"     "triangle"  "changing"  "circle"    "light"     "light"    
[52969] "triangle"  NA          "triangle"  "other"     "sphere"    "light"    
[52975] "triangle"  "light"     "fireball"  NA          "unknown"   "light"    
[52981] "other"     "cigar"     "triangle"  "unknown"   "formation" "disk"     
[52987] "cigar"     "other"     "cylinder"  "light"     "other"     "circle"   
[52993] "fireball"  "disk"      "circle"    "unknown"   "circle"    "light"    
[52999] "sphere"    "light"     "circle"    "disk"      "triangle"  "circle"   
[53005] "disk"      "other"     "cylinder"  "other"     "other"     "cylinder" 
[53011] "cigar"     "unknown"   "sphere"    "light"     "other"     "light"    
[53017] "changing"  "circle"    "light"     "rectangle" "light"     "light"    
[53023] "disk"      "rectangle" "oval"      "sphere"    "other"     "light"    
[53029] "triangle"  "unknown"   "fireball"  "circle"    "other"     "triangle" 
[53035] "light"     "triangle"  "unknown"   "circle"    "oval"      "oval"     
[53041] "sphere"    "light"     "disk"      "light"     "other"     "disk"     
[53047] "formation" "triangle"  "fireball"  "teardrop"  "triangle"  "disk"     
[53053] NA          "changing"  "diamond"   "rectangle" "oval"      "triangle" 
[53059] "light"     "light"     "fireball"  "light"     NA          "triangle" 
[53065] "light"     "unknown"   "light"     "formation" "teardrop"  "light"    
[53071] "cylinder"  "other"     "egg"       "other"     "other"     "fireball" 
[53077] "disk"      "other"     "light"     "light"     "light"     "sphere"   
[53083] "formation" "light"     "oval"      "circle"    "light"     "other"    
[53089] "disk"      "rectangle" "triangle"  "oval"      "triangle"  NA         
[53095] "fireball"  "oval"      "oval"      "oval"      "oval"      "cigar"    
[53101] "oval"      "unknown"   "light"     "light"     "circle"    "rectangle"
[53107] "disk"      "formation" "sphere"    "changing"  "disk"      "other"    
[53113] "light"     "triangle"  "circle"    "fireball"  "light"     "cone"     
[53119] NA          NA          "light"     "triangle"  "oval"      "unknown"  
[53125] "fireball"  "unknown"   "disk"      "unknown"   "circle"    "light"    
[53131] "rectangle" "changing"  "light"     NA          "triangle"  "circle"   
[53137] "disk"      "light"     "triangle"  "rectangle" "rectangle" "changing" 
[53143] "circle"    "triangle"  "cigar"     "triangle"  "oval"      "disk"     
[53149] "egg"       "light"     "oval"      "fireball"  "sphere"    "fireball" 
[53155] "cigar"     "fireball"  "cigar"     "unknown"   "light"     "sphere"   
[53161] "sphere"    "unknown"   "circle"    "cigar"     "sphere"    "oval"     
[53167] "teardrop"  "triangle"  NA          "formation" "light"     "oval"     
[53173] "triangle"  "disk"      "sphere"    "cigar"     "disk"      "sphere"   
[53179] "other"     "light"     "light"     "light"     "flash"     "teardrop" 
[53185] "fireball"  "light"     "disk"      "light"     "chevron"   "unknown"  
[53191] "circle"    "light"     "oval"      "other"     "unknown"   "other"    
[53197] "light"     "disk"      "light"     "light"     "light"     "triangle" 
[53203] "triangle"  "light"     "light"     "formation" "teardrop"  "cigar"    
[53209] "other"     "fireball"  "rectangle" "changing"  "circle"    "unknown"  
[53215] "triangle"  "triangle"  "formation" "changing"  "triangle"  "triangle" 
[53221] "cigar"     "light"     "light"     "other"     "light"     "unknown"  
[53227] "other"     "sphere"    "other"     "other"     "formation" "sphere"   
[53233] "unknown"   "circle"    "circle"    "circle"    "rectangle" "light"    
[53239] "other"     "triangle"  "circle"    "triangle"  "other"     "sphere"   
[53245] "fireball"  "circle"    "fireball"  "changing"  "cylinder"  "formation"
[53251] "fireball"  "light"     "light"     "circle"    "chevron"   "light"    
[53257] "light"     "light"     "light"     "circle"    "unknown"   "cone"     
[53263] "oval"      "fireball"  "sphere"    "teardrop"  "sphere"    "other"    
[53269] "circle"    "fireball"  "fireball"  "sphere"    "light"     "unknown"  
[53275] "fireball"  "oval"      "fireball"  "fireball"  "light"     "fireball" 
[53281] "circle"    "sphere"    "triangle"  "formation" "unknown"   "changing" 
[53287] "sphere"    "circle"    "oval"      "formation" "light"     "oval"     
[53293] "oval"      "light"     "circle"    "rectangle" "other"     "oval"     
[53299] "unknown"   "other"     "triangle"  "egg"       "sphere"    "diamond"  
[53305] NA          NA          "other"     NA          "disk"      "other"    
[53311] "triangle"  "triangle"  "light"     "triangle"  "other"     "other"    
[53317] NA          "triangle"  "circle"    NA          NA          NA         
[53323] "disk"      "triangle"  "oval"      "light"     "teardrop"  NA         
[53329] "triangle"  "disk"      "light"     "light"     "sphere"    "unknown"  
[53335] "rectangle" "formation" "circle"    "light"     "light"     "triangle" 
[53341] "other"     "light"     "disk"      "other"     "cylinder"  "light"    
[53347] "sphere"    "other"     "light"     "light"     "teardrop"  "triangle" 
[53353] "disk"      "fireball"  "formation" "light"     "flash"     "triangle" 
[53359] "oval"      "fireball"  "triangle"  "formation" "circle"    "sphere"   
[53365] "formation" "other"     "circle"    "triangle"  "egg"       "triangle" 
[53371] "unknown"   "rectangle" "circle"    "unknown"   "light"     "disk"     
[53377] "light"     "sphere"    "light"     "other"     "light"     "triangle" 
[53383] "oval"      "triangle"  "chevron"   "oval"      "sphere"    "light"    
[53389] "triangle"  "other"     "light"     "triangle"  "sphere"    "circle"   
[53395] "cylinder"  "disk"      "oval"      "sphere"    "disk"      "light"    
[53401] "formation" "disk"      "circle"    "formation" "changing"  "triangle" 
[53407] "unknown"   "light"     "triangle"  "formation" "light"     "light"    
[53413] "disk"      "oval"      "circle"    "cigar"     "light"     "changing" 
[53419] "triangle"  "light"     "disk"      "other"     "disk"      "cylinder" 
[53425] "other"     "light"     "unknown"   "light"     "light"     "sphere"   
[53431] "light"     "light"     NA          "light"     "light"     "triangle" 
[53437] "circle"    "light"     "circle"    "sphere"    "light"     "light"    
[53443] "light"     "flash"     NA          "unknown"   "fireball"  "flash"    
[53449] "sphere"    "circle"    "unknown"   "circle"    "fireball"  "circle"   
[53455] "light"     "other"     "light"     "other"     "triangle"  "oval"     
[53461] "other"     "triangle"  "other"     "changing"  "light"     "circle"   
[53467] "changing"  "sphere"    "formation" "egg"       "unknown"   "other"    
[53473] "fireball"  "disk"      NA          "circle"    "circle"    "chevron"  
[53479] "changing"  "light"     "teardrop"  "changing"  "circle"    "light"    
[53485] "formation" "circle"    "light"     "circle"    "fireball"  "light"    
[53491] "egg"       "unknown"   "other"     "light"     "unknown"   "disk"     
[53497] "disk"      "disk"      "light"     "oval"      "triangle"  "sphere"   
[53503] "formation" "other"     "fireball"  "teardrop"  "disk"      "oval"     
[53509] "disk"      NA          "diamond"   "triangle"  NA          "fireball" 
[53515] "circle"    "oval"      "circle"    "cross"     "teardrop"  "light"    
[53521] "light"     "other"     "light"     NA          "other"     "light"    
[53527] "cone"      "triangle"  "light"     "oval"      "light"     "disk"     
[53533] "flash"     "light"     "light"     "sphere"    "changing"  "circle"   
[53539] "light"     "light"     "other"     "light"     "triangle"  "other"    
[53545] "other"     "formation" "unknown"   "light"     "circle"    "oval"     
[53551] "formation" "light"     "changing"  "formation" "disk"      "chevron"  
[53557] "light"     "other"     "rectangle" "rectangle" "sphere"    "sphere"   
[53563] "other"     "unknown"   "diamond"   "unknown"   "oval"      "circle"   
[53569] "light"     "teardrop"  "disk"      "triangle"  "cylinder"  "unknown"  
[53575] "fireball"  "light"     "sphere"    "rectangle" "light"     "triangle" 
[53581] "triangle"  "light"     "triangle"  "light"     "circle"    "flash"    
[53587] "circle"    "triangle"  "unknown"   "other"     "oval"      "circle"   
[53593] "cross"     "triangle"  "oval"      "other"     "triangle"  "flash"    
[53599] "light"     "light"     "fireball"  "triangle"  "cigar"     "unknown"  
[53605] "cigar"     "teardrop"  "changing"  "teardrop"  "circle"    "light"    
[53611] "teardrop"  "flash"     "triangle"  "circle"    "light"     "changing" 
[53617] "disk"      "unknown"   "sphere"    "cigar"     "triangle"  "light"    
[53623] "light"     "oval"      "oval"      "light"     "formation" "sphere"   
[53629] "light"     "circle"    "other"     "disk"      "disk"      "light"    
[53635] "fireball"  "circle"    "fireball"  "light"     "light"     "oval"     
[53641] "triangle"  "light"     "diamond"   "light"     "changing"  "triangle" 
[53647] "other"     "circle"    "oval"      "disk"      "unknown"   "changing" 
[53653] "other"     "disk"      "cylinder"  "cigar"     "sphere"    "sphere"   
[53659] "light"     "triangle"  "teardrop"  "light"     "circle"    "circle"   
[53665] "cylinder"  "sphere"    "cylinder"  "oval"      "circle"    "fireball" 
[53671] "fireball"  "flash"     "unknown"   "circle"    "circle"    "other"    
[53677] "circle"    "light"     "flash"     "triangle"  "cylinder"  "fireball" 
[53683] "light"     "other"     "triangle"  "disk"      "fireball"  "rectangle"
[53689] "formation" "light"     "fireball"  "triangle"  "diamond"   "disk"     
[53695] "circle"    "disk"      "other"     "disk"      "triangle"  "chevron"  
[53701] "triangle"  "cigar"     "oval"      "triangle"  "light"     "rectangle"
[53707] "sphere"    "other"     "triangle"  "cross"     "sphere"    "cylinder" 
[53713] "rectangle" "triangle"  "triangle"  "cigar"     "other"     NA         
[53719] NA          "disk"      "light"     "triangle"  "light"     "other"    
[53725] NA          "triangle"  "formation" "triangle"  NA          "other"    
[53731] "other"     "sphere"    "other"     "light"     "light"     "formation"
[53737] "rectangle" "other"     "light"     "chevron"   "circle"    "circle"   
[53743] "light"     "fireball"  "flash"     "light"     "changing"  "changing" 
[53749] "formation" "egg"       "changing"  "other"     "light"     "light"    
[53755] "disk"      "unknown"   "light"     "triangle"  "fireball"  "cigar"    
[53761] "light"     "sphere"    "unknown"   "oval"      "light"     "sphere"   
[53767] "disk"      "formation" "rectangle" "light"     "unknown"   "formation"
[53773] "formation" "sphere"    "light"     "triangle"  "unknown"   "light"    
[53779] "light"     "triangle"  "disk"      "circle"    "oval"      "circle"   
[53785] "triangle"  "triangle"  "light"     "other"     "circle"    "light"    
[53791] "sphere"    "circle"    "triangle"  "triangle"  "unknown"   "oval"     
[53797] "light"     "light"     "disk"      "light"     "light"     "light"    
[53803] "unknown"   "triangle"  "light"     "unknown"   "light"     "light"    
[53809] "unknown"   "fireball"  "other"     "light"     "disk"      "light"    
[53815] "triangle"  "sphere"    "circle"    "light"     "circle"    "triangle" 
[53821] "triangle"  "light"     "circle"    "circle"    "fireball"  "unknown"  
[53827] "egg"       "light"     "flash"     "egg"       "light"     "light"    
[53833] "fireball"  "fireball"  "sphere"    "circle"    "circle"    "formation"
[53839] "triangle"  "changing"  "light"     "light"     "circle"    "other"    
[53845] "other"     "cross"     "light"     "sphere"    "oval"      "light"    
[53851] "unknown"   "light"     "light"     "circle"    "egg"       "circle"   
[53857] "circle"    "other"     "unknown"   "light"     "unknown"   "light"    
[53863] "fireball"  "other"     "unknown"   "light"     "formation" "teardrop" 
[53869] "disk"      "sphere"    "sphere"    "light"     "light"     "light"    
[53875] "cigar"     "rectangle" "circle"    "sphere"    "disk"      "sphere"   
[53881] "cylinder"  "rectangle" "circle"    "changing"  "light"     "light"    
[53887] "fireball"  "fireball"  "other"     "fireball"  "fireball"  "cylinder" 
[53893] "triangle"  "sphere"    "formation" "circle"    "light"     "light"    
[53899] "unknown"   "sphere"    "fireball"  "sphere"    "light"     "light"    
[53905] "disk"      "sphere"    "flash"     "unknown"   "light"     "fireball" 
[53911] "disk"      "circle"    "triangle"  "triangle"  "light"     "light"    
[53917] "light"     NA          "circle"    "cylinder"  "other"     "disk"     
[53923] "cigar"     "disk"      "other"     "disk"      "disk"      "oval"     
[53929] "disk"      "disk"      "disk"      "triangle"  "circle"    "egg"      
[53935] "cigar"     "disk"      "disk"      "sphere"    "circle"    NA         
[53941] "light"     "disk"      "disk"      "rectangle" "light"     NA         
[53947] "fireball"  "fireball"  "disk"      "circle"    NA          "light"    
[53953] "other"     "fireball"  "cigar"     "cigar"     "cigar"     "flash"    
[53959] "disk"      "circle"    "light"     NA          "disk"      "cylinder" 
[53965] NA          "disk"      "cigar"     "light"     "light"     "disk"     
[53971] "light"     NA          "light"     "disk"      "other"     "unknown"  
[53977] "other"     "disk"      "disk"      "light"     "other"     "disk"     
[53983] NA          "triangle"  "light"     "light"     "sphere"    "unknown"  
[53989] "unknown"   "disk"      "disk"      "disk"      "disk"      "other"    
[53995] "unknown"   "disk"      "cigar"     "cylinder"  "sphere"    "disk"     
[54001] "circle"    "other"     "light"     "light"     "sphere"    "unknown"  
[54007] "circle"    "sphere"    "disk"      "light"     "light"     "circle"   
[54013] "other"     "unknown"   "circle"    "disk"      "disk"      "oval"     
[54019] "sphere"    "unknown"   "disk"      "light"     "oval"      "light"    
[54025] "light"     "formation" "other"     "unknown"   "other"     "sphere"   
[54031] "circle"    "other"     "oval"      "sphere"    "disk"      "disk"     
[54037] "disk"      "circle"    "disk"      "disk"      "circle"    "light"    
[54043] "light"     "unknown"   "disk"      "oval"      "disk"      "light"    
[54049] "disk"      "circle"    "sphere"    "sphere"    "other"     "teardrop" 
[54055] "sphere"    "triangle"  "disk"      "disk"      "chevron"   "cigar"    
[54061] "disk"      "light"     "formation" "light"     "light"     "triangle" 
[54067] "disk"      "cylinder"  "disk"      "cigar"     "disk"      "unknown"  
[54073] "disk"      "disk"      "cigar"     "disk"      "sphere"    "light"    
[54079] "disk"      "circle"    "unknown"   "light"     "disk"      "other"    
[54085] "disk"      "cylinder"  "other"     "other"     "formation" "triangle" 
[54091] NA          "oval"      "unknown"   "disk"      "other"     "disk"     
[54097] "disk"      "disk"      "light"     "circle"    "circle"    "disk"     
[54103] "disk"      "unknown"   "oval"      "disk"      "disk"      "disk"     
[54109] "disk"      "triangle"  "disk"      "circle"    "other"     "circle"   
[54115] "disk"      "formation" "cigar"     "other"     "disk"      "other"    
[54121] "disk"      "oval"      "cigar"     "cigar"     "circle"    "disk"     
[54127] "disk"      "cigar"     "circle"    "circle"    "disk"      "disk"     
[54133] "disk"      "chevron"   "formation" "light"     "disk"      "triangle" 
[54139] "formation" "sphere"    "circle"    "disk"      "light"     "circle"   
[54145] "triangle"  "disk"      "other"     "triangle"  "other"     "triangle" 
[54151] "other"     "oval"      "sphere"    NA          "sphere"    "cigar"    
[54157] "disk"      "sphere"    "oval"      "unknown"   "triangle"  "disk"     
[54163] "unknown"   "disk"      "rectangle" "cigar"     "disk"      "disk"     
[54169] "formation" "light"     "disk"      "disk"      "triangle"  "oval"     
[54175] "triangle"  "other"     "light"     "light"     "rectangle" "other"    
[54181] "oval"      "circle"    "cigar"     "disk"      "light"     "disk"     
[54187] "circle"    "light"     "cigar"     "other"     "cigar"     "cigar"    
[54193] "circle"    "cigar"     "cigar"     "circle"    "unknown"   "light"    
[54199] "disk"      "disk"      "disk"      "rectangle" "triangle"  "disk"     
[54205] "formation" "circle"    NA          "disk"      "light"     "unknown"  
[54211] "flash"     "other"     "circle"    NA          "sphere"    "light"    
[54217] "circle"    "circle"    "disk"      NA          "triangle"  "disk"     
[54223] "disk"      NA          "disk"      "unknown"   "triangle"  "oval"     
[54229] "disk"      "light"     "sphere"    "cigar"     "disk"      "light"    
[54235] "circle"    "light"     "unknown"   "light"     "sphere"    "cigar"    
[54241] "oval"      "circle"    "disk"      "cylinder"  "teardrop"  "circle"   
[54247] "cigar"     "disk"      "oval"      "disk"      "disk"      "other"    
[54253] "disk"      "unknown"   "unknown"   "fireball"  "triangle"  "unknown"  
[54259] "unknown"   "unknown"   "other"     "disk"      "unknown"   "teardrop" 
[54265] "other"     "disk"      "rectangle" "disk"      "disk"      "oval"     
[54271] "triangle"  "other"     "unknown"   NA          "disk"      "disk"     
[54277] "circle"    "disk"      "light"     "light"     "disk"      "triangle" 
[54283] "disk"      "light"     "other"     "other"     NA          "formation"
[54289] "circle"    "light"     "unknown"   "disk"      "circle"    "oval"     
[54295] "fireball"  "triangle"  "unknown"   "cylinder"  NA          "unknown"  
[54301] "rectangle" "other"     "cylinder"  "disk"      "diamond"   "triangle" 
[54307] "disk"      "sphere"    "other"     "cigar"     "disk"      "cigar"    
[54313] "disk"      "sphere"    "other"     "disk"      "other"     "circle"   
[54319] "triangle"  "egg"       "light"     "disk"      "other"     "disk"     
[54325] "triangle"  "sphere"    "light"     "formation" "triangle"  "triangle" 
[54331] "triangle"  "changing"  "light"     "fireball"  "disk"      "disk"     
[54337] "oval"      "cigar"     NA          "cone"      "circle"    "diamond"  
[54343] "formation" "unknown"   "circle"    "sphere"    "disk"      "disk"     
[54349] "disk"      "rectangle" "disk"      "disk"      NA          "other"    
[54355] "unknown"   "oval"      "oval"      "circle"    "disk"      "circle"   
[54361] "oval"      "circle"    "changing"  NA          "other"     "unknown"  
[54367] "sphere"    "triangle"  "disk"      "formation" "other"     "other"    
[54373] "unknown"   "other"     "formation" "fireball"  "fireball"  "unknown"  
[54379] "diamond"   "other"     "triangle"  "cylinder"  "unknown"   "unknown"  
[54385] "egg"       "formation" "disk"      "disk"      "unknown"   "unknown"  
[54391] "fireball"  "triangle"  "unknown"   "changing"  "triangle"  "light"    
[54397] "oval"      "circle"    "other"     "circle"    "disk"      "triangle" 
[54403] "unknown"   "circle"    NA          "other"     "disk"      "cylinder" 
[54409] "circle"    "other"     "triangle"  "light"     "rectangle" "formation"
[54415] "formation" "cigar"     NA          NA          "triangle"  "unknown"  
[54421] "oval"      "triangle"  "light"     "unknown"   "circle"    "sphere"   
[54427] "light"     "sphere"    "light"     "triangle"  NA          "rectangle"
[54433] "teardrop"  "other"     "circle"    "light"     "cigar"     "fireball" 
[54439] "sphere"    "circle"    NA          "circle"    "triangle"  "oval"     
[54445] "circle"    "circle"    "triangle"  "light"     "other"     "unknown"  
[54451] "triangle"  "disk"      "unknown"   "light"     "light"     "triangle" 
[54457] "triangle"  "light"     NA          NA          "triangle"  "sphere"   
[54463] "light"     "egg"       "other"     "triangle"  "other"     "light"    
[54469] "sphere"    NA          "cylinder"  "triangle"  "triangle"  "unknown"  
[54475] "light"     "unknown"   "light"     "circle"    "disk"      "circle"   
[54481] "unknown"   "fireball"  "unknown"   "sphere"    "oval"      "disk"     
[54487] "circle"    "circle"    "oval"      "circle"    "disk"      "sphere"   
[54493] "light"     "teardrop"  "chevron"   "fireball"  "triangle"  "light"    
[54499] "triangle"  "sphere"    "light"     NA          "circle"    "light"    
[54505] "oval"      "light"     "formation" "circle"    NA          "rectangle"
[54511] "oval"      "disk"      "other"     "disk"      "oval"      "chevron"  
[54517] "circle"    "cross"     "circle"    "disk"      "light"     "light"    
[54523] "oval"      "formation" "other"     "circle"    "triangle"  "rectangle"
[54529] "light"     "sphere"    "triangle"  "rectangle" "light"     "triangle" 
[54535] "fireball"  "disk"      "disk"      NA          "fireball"  "disk"     
[54541] "oval"      "disk"      "cylinder"  "disk"      "sphere"    "sphere"   
[54547] "unknown"   "egg"       "circle"    "sphere"    "circle"    "other"    
[54553] "disk"      "triangle"  "cigar"     "light"     "unknown"   "sphere"   
[54559] "triangle"  "other"     "light"     "sphere"    "sphere"    "light"    
[54565] "fireball"  "changing"  "other"     "unknown"   "fireball"  "triangle" 
[54571] "disk"      "sphere"    "disk"      "unknown"   "sphere"    "light"    
[54577] "light"     "fireball"  "sphere"    "light"     "other"     "cigar"    
[54583] "sphere"    "circle"    "circle"    "triangle"  "other"     "light"    
[54589] "disk"      "other"     "circle"    "triangle"  "light"     "fireball" 
[54595] "fireball"  "light"     "light"     "circle"    "triangle"  "triangle" 
[54601] "triangle"  "oval"      "egg"       "disk"      "fireball"  "rectangle"
[54607] "other"     "disk"      "oval"      "circle"    "sphere"    "other"    
[54613] "formation" "cigar"     "circle"    "flash"     "disk"      "light"    
[54619] "light"     "fireball"  "triangle"  "light"     "sphere"    "other"    
[54625] "oval"      "triangle"  "unknown"   "triangle"  "light"     "light"    
[54631] "other"     "triangle"  "triangle"  "circle"    "unknown"   "other"    
[54637] "other"     "sphere"    "sphere"    "sphere"    "triangle"  "disk"     
[54643] "circle"    "fireball"  "oval"      "triangle"  "other"     "light"    
[54649] "circle"    "triangle"  "disk"      "light"     "formation" "other"    
[54655] "light"     "circle"    "light"     "rectangle" "unknown"   "light"    
[54661] "unknown"   "disk"      "changing"  "disk"      "sphere"    "cone"     
[54667] "cylinder"  "disk"      "cigar"     "rectangle" "sphere"    "fireball" 
[54673] "circle"    "circle"    "circle"    "fireball"  "other"     "circle"   
[54679] "light"     "sphere"    "triangle"  "light"     "disk"      "disk"     
[54685] "triangle"  "rectangle" "oval"      "formation" "sphere"    "unknown"  
[54691] "oval"      "disk"      "disk"      "sphere"    "triangle"  "circle"   
[54697] "oval"      "changing"  "other"     "oval"      "unknown"   "egg"      
[54703] "fireball"  "unknown"   "light"     "unknown"   "circle"    "fireball" 
[54709] "light"     "light"     NA          "other"     "formation" "triangle" 
[54715] "light"     NA          "oval"      "circle"    "other"     "light"    
[54721] "light"     "sphere"    "diamond"   "circle"    "oval"      "diamond"  
[54727] "cone"      "egg"       "other"     "fireball"  "disk"      "fireball" 
[54733] "sphere"    "chevron"   "disk"      "triangle"  "other"     "unknown"  
[54739] "sphere"    "circle"    "disk"      "light"     "triangle"  "diamond"  
[54745] "other"     "oval"      "unknown"   "cigar"     "triangle"  "light"    
[54751] "light"     "egg"       "light"     "other"     "disk"      "light"    
[54757] "light"     "disk"      "oval"      "circle"    "unknown"   "diamond"  
[54763] "cigar"     "triangle"  "unknown"   "light"     "changing"  "oval"     
[54769] "light"     "fireball"  "disk"      "changing"  "flash"     "sphere"   
[54775] "circle"    "sphere"    "light"     "unknown"   "diamond"   "disk"     
[54781] "oval"      "cigar"     "disk"      "unknown"   NA          "cylinder" 
[54787] "rectangle" "circle"    "sphere"    "cigar"     "disk"      "triangle" 
[54793] "other"     "disk"      "fireball"  "light"     "triangle"  "light"    
[54799] "oval"      "changing"  "triangle"  "light"     "other"     "light"    
[54805] "light"     "other"     "light"     "circle"    "light"     "circle"   
[54811] "oval"      "light"     "light"     "teardrop"  "other"     "sphere"   
[54817] "oval"      "fireball"  "unknown"   "light"     "light"     "light"    
[54823] "rectangle" "disk"      "light"     "unknown"   "triangle"  "triangle" 
[54829] "other"     "oval"      "disk"      "other"     "triangle"  "light"    
[54835] "unknown"   "unknown"   "light"     "triangle"  "oval"      "fireball" 
[54841] "circle"    "unknown"   "disk"      "unknown"   "circle"    "oval"     
[54847] "teardrop"  "light"     "unknown"   "light"     "triangle"  "light"    
[54853] "cone"      NA          "triangle"  "fireball"  "flash"     "triangle" 
[54859] "unknown"   "fireball"  "unknown"   "rectangle" "cone"      "other"    
[54865] "rectangle" "cross"     "unknown"   "disk"      "circle"    "other"    
[54871] "sphere"    "cigar"     "other"     "light"     "triangle"  "teardrop" 
[54877] "changing"  "oval"      "unknown"   "light"     "light"     "cigar"    
[54883] "triangle"  "formation" "triangle"  "teardrop"  "triangle"  "light"    
[54889] "unknown"   "circle"    "light"     "triangle"  "light"     "light"    
[54895] "unknown"   "unknown"   "chevron"   "cigar"     "disk"      "light"    
[54901] "light"     NA          "light"     "formation" "light"     "other"    
[54907] "light"     "other"     "changing"  "light"     NA          "circle"   
[54913] "light"     "triangle"  "unknown"   "light"     "oval"      "circle"   
[54919] "other"     "oval"      "circle"    "fireball"  "circle"    "light"    
[54925] "fireball"  "fireball"  "other"     "unknown"   "fireball"  "fireball" 
[54931] "formation" "unknown"   "diamond"   "sphere"    "fireball"  "diamond"  
[54937] "triangle"  "sphere"    "circle"    "fireball"  "disk"      "changing" 
[54943] "diamond"   "rectangle" "other"     "other"     "sphere"    "disk"     
[54949] "cylinder"  "sphere"    "formation" "circle"    "light"     "unknown"  
[54955] "unknown"   "light"     "fireball"  "circle"    "light"     "fireball" 
[54961] "oval"      "unknown"   "fireball"  "fireball"  "light"     "circle"   
[54967] "unknown"   "fireball"  "sphere"    "unknown"   "fireball"  "sphere"   
[54973] "fireball"  "oval"      "unknown"   "fireball"  "teardrop"  "other"    
[54979] "circle"    "disk"      "other"     "disk"      "disk"      "light"    
[54985] "triangle"  "disk"      "circle"    NA          NA          "other"    
[54991] "other"     "light"     "teardrop"  "light"     "circle"    "rectangle"
[54997] "unknown"   "other"     "light"     "light"     "light"     "light"    
[55003] "unknown"   "fireball"  "oval"      "triangle"  "light"     "other"    
[55009] "light"     "oval"      "other"     "teardrop"  "teardrop"  "disk"     
[55015] "circle"    "disk"      "changing"  "other"     "light"     "circle"   
[55021] "light"     "other"     "circle"    "light"     "light"     "other"    
[55027] "changing"  "disk"      "oval"      "light"     "fireball"  "light"    
[55033] "disk"      "disk"      "sphere"    "disk"      "sphere"    "oval"     
[55039] "cross"     "circle"    "other"     "chevron"   "other"     "changing" 
[55045] "triangle"  "light"     "triangle"  "unknown"   "disk"      "triangle" 
[55051] "sphere"    "circle"    "sphere"    "light"     "light"     "triangle" 
[55057] "triangle"  "diamond"   "disk"      "sphere"    "light"     "light"    
[55063] "light"     "formation" "light"     "light"     "fireball"  "light"    
[55069] "unknown"   "disk"      "disk"      "cylinder"  "light"     "disk"     
[55075] "disk"      "triangle"  "light"     "other"     "circle"    "sphere"   
[55081] "unknown"   "light"     "egg"       "disk"      "unknown"   "unknown"  
[55087] "changing"  "disk"      "fireball"  "sphere"    "fireball"  "triangle" 
[55093] "oval"      "light"     "chevron"   "flash"     "circle"    "changing" 
[55099] "light"     "sphere"    "sphere"    "other"     "oval"      "cigar"    
[55105] "formation" "other"     "disk"      "sphere"    "triangle"  "light"    
[55111] "light"     "sphere"    "changing"  "light"     "disk"      "formation"
[55117] "light"     "other"     "sphere"    "disk"      "light"     "light"    
[55123] "unknown"   "circle"    "oval"      "unknown"   "sphere"    "fireball" 
[55129] "fireball"  "unknown"   "fireball"  "fireball"  "changing"  "formation"
[55135] "teardrop"  "fireball"  "fireball"  "triangle"  "circle"    "fireball" 
[55141] "circle"    "light"     "triangle"  "circle"    "fireball"  "circle"   
[55147] "sphere"    "triangle"  "disk"      "formation" "fireball"  "sphere"   
[55153] "light"     "light"     "circle"    "fireball"  "light"     "unknown"  
[55159] "light"     NA          "circle"    "light"     "fireball"  "disk"     
[55165] "fireball"  "triangle"  "triangle"  "rectangle" "oval"      "circle"   
[55171] "oval"      "cigar"     "unknown"   "changing"  "circle"    "diamond"  
[55177] "fireball"  "light"     "circle"    "light"     "formation" "fireball" 
[55183] "light"     "triangle"  "light"     "cigar"     "light"     "disk"     
[55189] "circle"    "oval"      "other"     "oval"      "cigar"     "circle"   
[55195] "circle"    "formation" "other"     "unknown"   "disk"      NA         
[55201] "light"     "diamond"   "light"     "light"     "circle"    "light"    
[55207] "chevron"   "fireball"  "light"     "light"     "cylinder"  "sphere"   
[55213] "teardrop"  "disk"      "triangle"  "sphere"    "disk"      "circle"   
[55219] "light"     "fireball"  "light"     "disk"      "unknown"   "unknown"  
[55225] "disk"      "sphere"    "changing"  "sphere"    "sphere"    "triangle" 
[55231] "cigar"     "light"     "diamond"   "fireball"  "circle"    "disk"     
[55237] "light"     "disk"      "triangle"  "light"     "cylinder"  "light"    
[55243] "circle"    "other"     "fireball"  "changing"  "formation" "disk"     
[55249] "other"     "cylinder"  "light"     "light"     "sphere"    "circle"   
[55255] "triangle"  "light"     "light"     "light"     "sphere"    "sphere"   
[55261] "light"     "circle"    "cigar"     "light"     "other"     "disk"     
[55267] "disk"      "oval"      "sphere"    "sphere"    "changing"  "triangle" 
[55273] "other"     "unknown"   "sphere"    "triangle"  "light"     "disk"     
[55279] "light"     "light"     "disk"      "disk"      "circle"    "other"    
[55285] "sphere"    "other"     "other"     "fireball"  "flash"     "disk"     
[55291] "triangle"  "other"     "other"     "changing"  "other"     "oval"     
[55297] "light"     "oval"      "light"     "other"     "disk"      "triangle" 
[55303] "unknown"   "disk"      "teardrop"  "unknown"   "triangle"  "triangle" 
[55309] "fireball"  "light"     "oval"      "sphere"    "formation" "triangle" 
[55315] "rectangle" "teardrop"  "chevron"   "other"     "other"     "teardrop" 
[55321] "light"     "light"     "diamond"   "disk"      "cylinder"  "other"    
[55327] "sphere"    "cigar"     "light"     "fireball"  "light"     "circle"   
[55333] "light"     "other"     "circle"    "light"     "unknown"   "disk"     
[55339] "circle"    "sphere"    "light"     "other"     "triangle"  "fireball" 
[55345] "fireball"  "fireball"  "light"     "light"     "unknown"   "circle"   
[55351] "light"     "sphere"    "sphere"    "triangle"  "light"     "sphere"   
[55357] "light"     "circle"    "disk"      "other"     "sphere"    "disk"     
[55363] "rectangle" "light"     "oval"      "light"     "triangle"  "fireball" 
[55369] "unknown"   "light"     "changing"  "light"     "disk"      "sphere"   
[55375] "disk"      "egg"       "cigar"     "flash"     "diamond"   "fireball" 
[55381] "light"     "light"     "fireball"  "fireball"  "disk"      "oval"     
[55387] "disk"      "triangle"  "light"     "unknown"   "circle"    "sphere"   
[55393] "triangle"  "light"     "other"     "oval"      "oval"      NA         
[55399] "circle"    "fireball"  "other"     NA          "disk"      "cigar"    
[55405] "light"     "diamond"   "light"     "teardrop"  "cigar"     "cigar"    
[55411] "formation" "cigar"     "disk"      "cigar"     "disk"      "cylinder" 
[55417] "light"     "fireball"  "light"     "oval"      "rectangle" "triangle" 
[55423] "other"     "chevron"   "cigar"     NA          "formation" "sphere"   
[55429] "circle"    "other"     "disk"      "triangle"  "unknown"   "fireball" 
[55435] "fireball"  "circle"    NA          "sphere"    "changing"  "sphere"   
[55441] "triangle"  "circle"    "light"     "light"     "triangle"  "other"    
[55447] "sphere"    "disk"      "light"     "triangle"  "diamond"   NA         
[55453] "triangle"  "disk"      "circle"    "other"     "changing"  "sphere"   
[55459] "other"     "disk"      "disk"      "disk"      NA          "egg"      
[55465] "light"     "light"     "light"     "light"     NA          "sphere"   
[55471] "disk"      "unknown"   "circle"    "sphere"    "teardrop"  "triangle" 
[55477] "unknown"   "other"     "flash"     "light"     "oval"      "light"    
[55483] "light"     "flash"     "light"     "light"     "triangle"  "circle"   
[55489] "cigar"     "triangle"  "sphere"    "sphere"    "diamond"   "cone"     
[55495] "other"     "unknown"   "flash"     "fireball"  "disk"      "cigar"    
[55501] "other"     "cylinder"  "cigar"     "cone"      "light"     "cylinder" 
[55507] "oval"      "circle"    "circle"    "light"     "light"     "light"    
[55513] "triangle"  "light"     "cone"      "triangle"  "disk"      "unknown"  
[55519] "disk"      "cigar"     "disk"      "oval"      "circle"    "oval"     
[55525] "triangle"  "light"     "light"     "cigar"     "circle"    "fireball" 
[55531] "flash"     "light"     "sphere"    "unknown"   "diamond"   "triangle" 
[55537] "changing"  "disk"      "light"     "flash"     "circle"    "other"    
[55543] "fireball"  "sphere"    "light"     "light"     "light"     "unknown"  
[55549] "circle"    "circle"    "light"     "circle"    "circle"    "circle"   
[55555] "unknown"   "fireball"  "cone"      "teardrop"  "circle"    "oval"     
[55561] "oval"      "disk"      "light"     "light"     "circle"    "light"    
[55567] "sphere"    "other"     "light"     "light"     "sphere"    "other"    
[55573] NA          "changing"  NA          "changing"  "fireball"  "circle"   
[55579] "light"     "fireball"  "light"     "fireball"  "light"     "light"    
[55585] "light"     "light"     "circle"    "circle"    "changing"  "disk"     
[55591] "unknown"   "diamond"   "flash"     "circle"    "circle"    "light"    
[55597] "triangle"  "unknown"   "light"     "disk"      "circle"    "other"    
[55603] "cylinder"  "circle"    NA          "flash"     "oval"      "sphere"   
[55609] NA          "triangle"  NA          NA          NA          NA         
[55615] "triangle"  "triangle"  "disk"      "other"     "other"     "light"    
[55621] "disk"      "unknown"   "triangle"  "disk"      "other"     "cigar"    
[55627] "circle"    "unknown"   "light"     "circle"    "other"     "circle"   
[55633] "disk"      "triangle"  "triangle"  "light"     "fireball"  "other"    
[55639] "triangle"  "light"     "unknown"   "rectangle" "light"     "light"    
[55645] "light"     "circle"    "unknown"   "light"     "disk"      "cylinder" 
[55651] "triangle"  "light"     "light"     "flash"     "other"     "sphere"   
[55657] "disk"      "sphere"    "unknown"   "light"     "light"     "light"    
[55663] "circle"    "light"     "other"     "disk"      "flash"     "circle"   
[55669] "fireball"  "fireball"  "disk"      "other"     "oval"      "cylinder" 
[55675] "light"     "light"     "diamond"   "other"     "light"     "other"    
[55681] "rectangle" "oval"      "disk"      "sphere"    "triangle"  "circle"   
[55687] "oval"      "disk"      "unknown"   "cone"      "sphere"    "rectangle"
[55693] "sphere"    "other"     "disk"      "circle"    "circle"    "light"    
[55699] "sphere"    "rectangle" "teardrop"  "other"     "disk"      "sphere"   
[55705] "fireball"  "rectangle" "unknown"   "sphere"    "disk"      "other"    
[55711] "circle"    "light"     "triangle"  "other"     "sphere"    "light"    
[55717] "triangle"  "cigar"     "unknown"   "light"     "light"     "light"    
[55723] "sphere"    "light"     "light"     "unknown"   "unknown"   "unknown"  
[55729] "light"     "light"     "light"     "circle"    "light"     "unknown"  
[55735] "light"     "light"     "formation" "formation" "formation" "light"    
[55741] "light"     "other"     "other"     "unknown"   "light"     "light"    
[55747] "formation" "formation" "unknown"   "light"     "circle"    "light"    
[55753] "changing"  "triangle"  "other"     "cigar"     "cigar"     "oval"     
[55759] "triangle"  "light"     "light"     "oval"      "other"     "circle"   
[55765] "fireball"  "fireball"  "cigar"     "other"     "other"     "light"    
[55771] "cigar"     "light"     "changing"  "unknown"   "unknown"   "disk"     
[55777] "circle"    "light"     "light"     "changing"  "oval"      "disk"     
[55783] "disk"      "teardrop"  "unknown"   "disk"      "disk"      "cigar"    
[55789] "fireball"  "light"     "chevron"   "unknown"   "other"     "sphere"   
[55795] "unknown"   "triangle"  "circle"    "cylinder"  "rectangle" "circle"   
[55801] "diamond"   "fireball"  "sphere"    "oval"      "teardrop"  "fireball" 
[55807] "light"     "other"     "other"     "circle"    "egg"       "formation"
[55813] "cigar"     "rectangle" "cross"     "fireball"  "diamond"   "fireball" 
[55819] "light"     "light"     "sphere"    "fireball"  "changing"  "sphere"   
[55825] "fireball"  "other"     "oval"      "cylinder"  "fireball"  "circle"   
[55831] "light"     "triangle"  "circle"    "other"     "fireball"  "unknown"  
[55837] "circle"    "unknown"   "light"     "light"     "circle"    "disk"     
[55843] "sphere"    "light"     "circle"    "disk"      "disk"      "disk"     
[55849] "cigar"     "light"     "other"     "egg"       "unknown"   "circle"   
[55855] "circle"    "light"     "disk"      "disk"      "light"     "light"    
[55861] "disk"      "light"     "diamond"   "circle"    "circle"    "light"    
[55867] "disk"      "cigar"     "light"     "cigar"     "triangle"  "triangle" 
[55873] "cigar"     "sphere"    "disk"      "changing"  "circle"    "disk"     
[55879] "light"     "circle"    "disk"      "formation" "sphere"    "oval"     
[55885] "light"     "triangle"  "triangle"  "other"     "circle"    "oval"     
[55891] "sphere"    "cylinder"  "circle"    "fireball"  "oval"      "fireball" 
[55897] "disk"      "light"     "fireball"  "oval"      "unknown"   "triangle" 
[55903] "formation" "triangle"  "light"     "triangle"  "light"     "oval"     
[55909] "circle"    "rectangle" "triangle"  "other"     "triangle"  "oval"     
[55915] "changing"  "circle"    "sphere"    "cigar"     "circle"    "cone"     
[55921] NA          "triangle"  NA          NA          "other"     "other"    
[55927] "fireball"  "light"     NA          NA          "light"     "light"    
[55933] NA          "disk"      "other"     "circle"    "circle"    "triangle" 
[55939] "light"     "oval"      "triangle"  "rectangle" "light"     "circle"   
[55945] "egg"       "sphere"    "circle"    "fireball"  "cylinder"  "other"    
[55951] "oval"      "chevron"   "circle"    "circle"    "other"     "light"    
[55957] "sphere"    "light"     "circle"    "cylinder"  "circle"    "rectangle"
[55963] "oval"      "disk"      NA          "circle"    "fireball"  "disk"     
[55969] "light"     "light"     "light"     "triangle"  "light"     "fireball" 
[55975] "flash"     "unknown"   "disk"      "unknown"   "unknown"   "circle"   
[55981] "changing"  "rectangle" "unknown"   "circle"    "other"     "unknown"  
[55987] "teardrop"  "disk"      "circle"    "circle"    "triangle"  "light"    
[55993] "circle"    "changing"  "cylinder"  "cylinder"  "other"     NA         
[55999] "triangle"  "fireball"  "light"     NA          "sphere"    "triangle" 
[56005] "circle"    "triangle"  "disk"      "teardrop"  "unknown"   "light"    
[56011] "light"     "light"     "light"     "sphere"    "light"     "other"    
[56017] "changing"  "disk"      "oval"      "other"     "circle"    "formation"
[56023] "light"     "unknown"   "triangle"  "triangle"  "other"     "circle"   
[56029] "cigar"     "circle"    "formation" "fireball"  "formation" "light"    
[56035] "triangle"  "oval"      NA          "unknown"   "other"     "sphere"   
[56041] "fireball"  "sphere"    "changing"  "egg"       "light"     "egg"      
[56047] "fireball"  "oval"      "other"     "oval"      "light"     "circle"   
[56053] "disk"      "disk"      "disk"      "sphere"    "light"     "light"    
[56059] "light"     "light"     "light"     "light"     "triangle"  "sphere"   
[56065] "light"     "circle"    "triangle"  "sphere"    "light"     "other"    
[56071] "light"     "light"     "light"     "fireball"  "light"     "other"    
[56077] "circle"    "triangle"  "fireball"  "changing"  "light"     "cigar"    
[56083] "sphere"    "triangle"  "cylinder"  "unknown"   "disk"      "light"    
[56089] "cigar"     "triangle"  "other"     "cigar"     "circle"    "light"    
[56095] "formation" "light"     "fireball"  "flash"     "other"     "formation"
[56101] "other"     "circle"    "disk"      "cross"     "sphere"    "rectangle"
[56107] "triangle"  "light"     "light"     "light"     "light"     "unknown"  
[56113] "disk"      "fireball"  "fireball"  "circle"    "circle"    "circle"   
[56119] "light"     "sphere"    "fireball"  "circle"    "disk"      "oval"     
[56125] "sphere"    "flash"     "triangle"  "fireball"  "unknown"   "fireball" 
[56131] "rectangle" "unknown"   "disk"      "sphere"    "disk"      "light"    
[56137] "unknown"   "triangle"  "circle"    "light"     "unknown"   "triangle" 
[56143] "disk"      "fireball"  "triangle"  "triangle"  "oval"      "fireball" 
[56149] "light"     "other"     "triangle"  "circle"    "fireball"  "light"    
[56155] "sphere"    "triangle"  "light"     "triangle"  "sphere"    "circle"   
[56161] "fireball"  "sphere"    "light"     "fireball"  "light"     "changing" 
[56167] "light"     "circle"    "circle"    "light"     "sphere"    "flash"    
[56173] "light"     "circle"    "light"     "triangle"  "light"     "light"    
[56179] "light"     "light"     "light"     "triangle"  "unknown"   "formation"
[56185] "light"     "fireball"  "light"     "formation" "fireball"  "light"    
[56191] "light"     "formation" "other"     "triangle"  "disk"      "disk"     
[56197] "light"     "triangle"  "unknown"   "cigar"     "oval"      "sphere"   
[56203] "fireball"  "fireball"  "triangle"  "unknown"   "triangle"  "egg"      
[56209] "unknown"   "teardrop"  "sphere"    NA          NA          "light"    
[56215] NA          "egg"       "cone"      "disk"      "light"     "cylinder" 
[56221] "triangle"  "other"     "disk"      "disk"      "light"     "cylinder" 
[56227] "other"     "oval"      "light"     "triangle"  "unknown"   "circle"   
[56233] "sphere"    "disk"      "cigar"     "changing"  "circle"    "circle"   
[56239] "light"     "triangle"  "unknown"   "disk"      "circle"    "cigar"    
[56245] "sphere"    "oval"      "other"     "light"     "triangle"  NA         
[56251] "diamond"   NA          "light"     "unknown"   "changing"  "sphere"   
[56257] "light"     "circle"    "sphere"    "circle"    "light"     "sphere"   
[56263] "triangle"  "rectangle" "circle"    "light"     "disk"      "sphere"   
[56269] "cigar"     "unknown"   "triangle"  "triangle"  "cylinder"  "disk"     
[56275] "disk"      "unknown"   "light"     "unknown"   "sphere"    "unknown"  
[56281] "light"     "circle"    "other"     "disk"      "other"     "changing" 
[56287] "cylinder"  "other"     "triangle"  "unknown"   "circle"    "chevron"  
[56293] "other"     "light"     "diamond"   "unknown"   "triangle"  "unknown"  
[56299] "cigar"     "formation" "oval"      "cigar"     "other"     "light"    
[56305] "light"     "circle"    "light"     "triangle"  "formation" "light"    
[56311] "fireball"  "circle"    "flash"     "light"     "sphere"    "triangle" 
[56317] "circle"    "disk"      "triangle"  "triangle"  "unknown"   "fireball" 
[56323] "teardrop"  "unknown"   "cigar"     "triangle"  "light"     "disk"     
[56329] NA          "fireball"  "light"     "sphere"    "formation" "light"    
[56335] "circle"    "circle"    "light"     "other"     "unknown"   "light"    
[56341] "sphere"    "cylinder"  "oval"      "sphere"    "fireball"  "sphere"   
[56347] "unknown"   "unknown"   "light"     "light"     "light"     "disk"     
[56353] "unknown"   "light"     "other"     "light"     "light"     "light"    
[56359] "unknown"   "cone"      "other"     NA          "sphere"    "triangle" 
[56365] "light"     "cylinder"  "oval"      "unknown"   "oval"      "sphere"   
[56371] "sphere"    "diamond"   "disk"      "oval"      "disk"      "other"    
[56377] "sphere"    "light"     "light"     "flash"     "unknown"   "fireball" 
[56383] "unknown"   "oval"      "triangle"  "light"     "other"     "unknown"  
[56389] "light"     "unknown"   "other"     "light"     "flash"     "light"    
[56395] "light"     "light"     "triangle"  "circle"    "light"     "circle"   
[56401] "fireball"  "light"     "unknown"   "fireball"  "cigar"     "circle"   
[56407] "fireball"  "cylinder"  "cylinder"  "rectangle" "cone"      "triangle" 
[56413] "sphere"    "light"     "unknown"   "circle"    "triangle"  "sphere"   
[56419] "sphere"    "disk"      "disk"      "light"     "fireball"  "light"    
[56425] "fireball"  "circle"    "circle"    "fireball"  "other"     NA         
[56431] "light"     "unknown"   "disk"      "circle"    NA          "disk"     
[56437] "disk"      "triangle"  NA          "triangle"  "chevron"   "egg"      
[56443] "oval"      "light"     "disk"      "light"     "sphere"    "chevron"  
[56449] "changing"  "triangle"  NA          "light"     NA          "triangle" 
[56455] "circle"    "disk"      "sphere"    "light"     "light"     "cigar"    
[56461] "circle"    "triangle"  "other"     "triangle"  "triangle"  "sphere"   
[56467] "oval"      "oval"      "disk"      "light"     NA          "cigar"    
[56473] "formation" "oval"      "unknown"   "unknown"   "disk"      "triangle" 
[56479] "light"     "triangle"  "sphere"    "circle"    "cigar"     "other"    
[56485] "cylinder"  "sphere"    "other"     "triangle"  "other"     "other"    
[56491] "disk"      "circle"    "teardrop"  "diamond"   "triangle"  "oval"     
[56497] "unknown"   "circle"    "teardrop"  "other"     "circle"    "formation"
[56503] "light"     "light"     "triangle"  "sphere"    "cylinder"  "triangle" 
[56509] "light"     "chevron"   "triangle"  "light"     "unknown"   "light"    
[56515] "circle"    "circle"    "light"     "oval"      "triangle"  "unknown"  
[56521] "rectangle" "light"     "oval"      "triangle"  "triangle"  "oval"     
[56527] "sphere"    "cigar"     "other"     "unknown"   "disk"      "egg"      
[56533] "oval"      "disk"      "light"     "fireball"  "other"     "sphere"   
[56539] "unknown"   "fireball"  "triangle"  "sphere"    "triangle"  "circle"   
[56545] "light"     "light"     "fireball"  "light"     "other"     "light"    
[56551] "light"     "flash"     "light"     "circle"    "disk"      "cylinder" 
[56557] "circle"    "rectangle" "flash"     "cigar"     "changing"  "sphere"   
[56563] "sphere"    "fireball"  "circle"    "fireball"  "fireball"  "light"    
[56569] "fireball"  "circle"    "triangle"  NA          "circle"    "fireball" 
[56575] "circle"    "sphere"    "cone"      "circle"    "triangle"  "fireball" 
[56581] "formation" "light"     "light"     "formation" "rectangle" "sphere"   
[56587] "light"     "changing"  "egg"       "oval"      "sphere"    "oval"     
[56593] "fireball"  "light"     "sphere"    "sphere"    "sphere"    "circle"   
[56599] "cylinder"  "other"     "light"     "light"     "unknown"   "oval"     
[56605] "disk"      "disk"      "triangle"  "cigar"     "disk"      "disk"     
[56611] "oval"      "light"     "other"     "cylinder"  "light"     "rectangle"
[56617] NA          "triangle"  "fireball"  "triangle"  NA          "circle"   
[56623] NA          "light"     "other"     "light"     "light"     "unknown"  
[56629] "triangle"  "cylinder"  "unknown"   "sphere"    "light"     "circle"   
[56635] "unknown"   "disk"      "egg"       "egg"       "light"     "light"    
[56641] "circle"    "sphere"    "unknown"   "light"     "circle"    "disk"     
[56647] "disk"      "triangle"  "circle"    "teardrop"  NA          "formation"
[56653] "formation" "light"     "light"     "unknown"   "unknown"   "light"    
[56659] "light"     "fireball"  "formation" "oval"      "circle"    "cigar"    
[56665] "oval"      "rectangle" "cigar"     "oval"      "diamond"   "light"    
[56671] "circle"    "cigar"     "light"     "other"     "changing"  "unknown"  
[56677] "unknown"   "light"     "light"     "other"     "light"     "triangle" 
[56683] "cigar"     "other"     "cigar"     "light"     "light"     "circle"   
[56689] "triangle"  "light"     "sphere"    "triangle"  "flash"     "sphere"   
[56695] "unknown"   "other"     "fireball"  "light"     "other"     "cylinder" 
[56701] "circle"    "egg"       "fireball"  "chevron"   "rectangle" "light"    
[56707] "changing"  "chevron"   "light"     "unknown"   "sphere"    "sphere"   
[56713] "unknown"   "light"     "sphere"    "circle"    "light"     "sphere"   
[56719] "oval"      "formation" "light"     "flash"     "light"     "unknown"  
[56725] "other"     "chevron"   "unknown"   "unknown"   "changing"  "formation"
[56731] "circle"    "rectangle" "oval"      "chevron"   "fireball"  "unknown"  
[56737] "unknown"   "light"     "circle"    "egg"       "disk"      "circle"   
[56743] "cigar"     "oval"      "unknown"   "light"     "flash"     "teardrop" 
[56749] "cylinder"  "cigar"     "other"     "circle"    "disk"      "fireball" 
[56755] "light"     "circle"    "light"     "oval"      "fireball"  "changing" 
[56761] "fireball"  "triangle"  "fireball"  "light"     "light"     "circle"   
[56767] "circle"    "triangle"  "triangle"  "light"     "triangle"  "light"    
[56773] "fireball"  "other"     "circle"    "sphere"    "formation" "other"    
[56779] "circle"    "light"     "cigar"     "fireball"  "fireball"  "unknown"  
[56785] "circle"    "sphere"    "triangle"  "light"     "cone"      "fireball" 
[56791] "other"     "light"     "fireball"  "fireball"  "light"     "light"    
[56797] "circle"    "diamond"   "light"     "light"     "fireball"  "teardrop" 
[56803] "fireball"  "oval"      "unknown"   "light"     "fireball"  "sphere"   
[56809] "light"     "egg"       "disk"      "sphere"    "disk"      "circle"   
[56815] "circle"    "fireball"  "fireball"  "disk"      "light"     "sphere"   
[56821] "fireball"  "oval"      "other"     "fireball"  "fireball"  "light"    
[56827] "unknown"   "unknown"   "oval"      "circle"    "other"     NA         
[56833] "egg"       "circle"    "fireball"  "circle"    "fireball"  "circle"   
[56839] "fireball"  "light"     "circle"    "fireball"  "circle"    "changing" 
[56845] "circle"    "light"     "light"     "sphere"    "unknown"   "sphere"   
[56851] "fireball"  "light"     "sphere"    "other"     "circle"    "disk"     
[56857] "formation" "light"     "sphere"    "triangle"  "triangle"  "triangle" 
[56863] "circle"    "oval"      "sphere"    "cigar"     "sphere"    "other"    
[56869] "circle"    "light"     "light"     "egg"       "other"     "disk"     
[56875] "disk"      NA          "disk"      "disk"      "light"     "light"    
[56881] NA          NA          "other"     "sphere"    "light"     "light"    
[56887] "other"     "triangle"  "unknown"   "disk"      "circle"    "circle"   
[56893] "light"     "cigar"     "other"     "light"     "unknown"   "diamond"  
[56899] "oval"      "circle"    "other"     "light"     "light"     "other"    
[56905] "rectangle" "circle"    "unknown"   "circle"    "diamond"   "fireball" 
[56911] "other"     "fireball"  "light"     "disk"      "circle"    "fireball" 
[56917] "other"     "triangle"  "light"     "light"     "triangle"  "unknown"  
[56923] "cylinder"  "changing"  "disk"      "cigar"     "cigar"     "other"    
[56929] "light"     "light"     "light"     "cigar"     "changing"  "other"    
[56935] "triangle"  "light"     "light"     "oval"      "circle"    "light"    
[56941] "light"     "sphere"    "light"     "light"     "light"     "light"    
[56947] "changing"  "triangle"  "changing"  "light"     "fireball"  "triangle" 
[56953] "sphere"    "light"     "flash"     "rectangle" "light"     "other"    
[56959] "cylinder"  "triangle"  "triangle"  "circle"    "light"     "sphere"   
[56965] "other"     "disk"      "circle"    NA          "egg"       "triangle" 
[56971] "unknown"   "other"     "sphere"    "circle"    "light"     "diamond"  
[56977] "light"     "disk"      "disk"      "disk"      "formation" "cigar"    
[56983] "circle"    "changing"  "light"     "circle"    "diamond"   "fireball" 
[56989] "circle"    "fireball"  "sphere"    "triangle"  "oval"      "light"    
[56995] "light"     "triangle"  "unknown"   "light"     "oval"      "oval"     
[57001] "teardrop"  "unknown"   "light"     "formation" "sphere"    "sphere"   
[57007] "triangle"  "unknown"   "rectangle" "light"     "light"     "light"    
[57013] "unknown"   NA          "unknown"   "triangle"  "changing"  "light"    
[57019] "unknown"   "light"     "oval"      "unknown"   "disk"      "fireball" 
[57025] "unknown"   "diamond"   "light"     "other"     "flash"     "light"    
[57031] "triangle"  "light"     "triangle"  "unknown"   NA          "circle"   
[57037] "light"     NA          "sphere"    "oval"      "rectangle" "oval"     
[57043] "sphere"    "light"     "diamond"   "sphere"    "light"     "changing" 
[57049] "other"     "oval"      "light"     "unknown"   "light"     "disk"     
[57055] "formation" "triangle"  "fireball"  "fireball"  "light"     "light"    
[57061] "fireball"  "rectangle" "sphere"    NA          "unknown"   "fireball" 
[57067] "fireball"  "circle"    "oval"      "oval"      "disk"      "oval"     
[57073] "light"     "fireball"  "sphere"    "unknown"   "sphere"    "light"    
[57079] "light"     "light"     "fireball"  "fireball"  "fireball"  "fireball" 
[57085] "triangle"  "cigar"     "sphere"    "fireball"  "light"     "circle"   
[57091] "circle"    "changing"  "triangle"  "light"     "light"     "fireball" 
[57097] "other"     "fireball"  "unknown"   "circle"    "other"     "fireball" 
[57103] "triangle"  "other"     "light"     "sphere"    "other"     "cylinder" 
[57109] "fireball"  "light"     "light"     "circle"    "flash"     "fireball" 
[57115] "light"     "light"     "cigar"     "triangle"  "light"     "fireball" 
[57121] "other"     "sphere"    "disk"      "disk"      "sphere"    "other"    
[57127] "unknown"   "oval"      "unknown"   "light"     NA          "triangle" 
[57133] NA          NA          NA          NA          "changed"   "light"    
[57139] "oval"      NA          "oval"      "light"     "light"     "other"    
[57145] "circle"    "sphere"    "sphere"    "light"     "changing"  "oval"     
[57151] "cylinder"  "sphere"    "light"     "light"     "cylinder"  "circle"   
[57157] "chevron"   "sphere"    "triangle"  "triangle"  "unknown"   "unknown"  
[57163] "light"     "triangle"  "changing"  "unknown"   "other"     "disk"     
[57169] "light"     "egg"       "chevron"   "triangle"  "sphere"    "rectangle"
[57175] "light"     "light"     "triangle"  "unknown"   NA          "disk"     
[57181] "oval"      "oval"      "light"     "egg"       "light"     "sphere"   
[57187] "circle"    "unknown"   "cigar"     "unknown"   "light"     "other"    
[57193] "circle"    "oval"      "light"     "oval"      "cigar"     "sphere"   
[57199] "oval"      "unknown"   "light"     "light"     "sphere"    "circle"   
[57205] "diamond"   "oval"      "circle"    "circle"    "triangle"  "formation"
[57211] "sphere"    "circle"    "light"     "chevron"   "formation" "cylinder" 
[57217] "triangle"  "triangle"  "triangle"  "circle"    "triangle"  "triangle" 
[57223] "egg"       "unknown"   "sphere"    "cylinder"  "light"     "sphere"   
[57229] "light"     "light"     "flash"     "light"     "unknown"   "oval"     
[57235] "triangle"  "triangle"  "cigar"     "other"     "cylinder"  "disk"     
[57241] "fireball"  "fireball"  "triangle"  "circle"    "cross"     "cigar"    
[57247] "rectangle" "light"     "light"     "formation" "light"     "light"    
[57253] "sphere"    "oval"      "other"     "other"     "unknown"   "flash"    
[57259] "chevron"   "cigar"     "light"     "oval"      "light"     "unknown"  
[57265] "unknown"   "unknown"   "circle"    "light"     "light"     "triangle" 
[57271] "light"     "circle"    "rectangle" "other"     "unknown"   "formation"
[57277] "light"     "cigar"     "sphere"    "circle"    NA          "unknown"  
[57283] "light"     "sphere"    "fireball"  "light"     "circle"    "fireball" 
[57289] "light"     "fireball"  "light"     "light"     "light"     "light"    
[57295] "light"     "fireball"  "oval"      "unknown"   "other"     "light"    
[57301] "other"     "rectangle" "other"     "changing"  "light"     "sphere"   
[57307] "circle"    NA          "circle"    "formation" "oval"      "light"    
[57313] "light"     "rectangle" "circle"    "fireball"  "circle"    "unknown"  
[57319] "light"     "light"     "disk"      "light"     "oval"      "unknown"  
[57325] "fireball"  "cigar"     "light"     "changing"  "sphere"    "light"    
[57331] "light"     "sphere"    "light"     "circle"    "light"     "light"    
[57337] "light"     "circle"    "light"     "light"     "triangle"  "fireball" 
[57343] "teardrop"  "sphere"    "unknown"   "fireball"  "fireball"  "other"    
[57349] "sphere"    "fireball"  "disk"      "triangle"  "circle"    "light"    
[57355] "fireball"  "sphere"    "sphere"    "oval"      "light"     "light"    
[57361] "circle"    "unknown"   "disk"      "cigar"     "disk"      "unknown"  
[57367] "disk"      "circle"    "unknown"   "disk"      "cigar"     "sphere"   
[57373] "disk"      "disk"      "disk"      "circle"    "disk"      "unknown"  
[57379] "light"     "circle"    "other"     "light"     "disk"      "changing" 
[57385] "other"     "disk"      "cylinder"  "other"     "light"     "disk"     
[57391] NA          NA          NA          NA          "diamond"   "chevron"  
[57397] "sphere"    "light"     "sphere"    "sphere"    "circle"    "fireball" 
[57403] "circle"    "egg"       NA          "other"     NA          NA         
[57409] "unknown"   "sphere"    "oval"      "other"     "diamond"   "unknown"  
[57415] "unknown"   "cigar"     "oval"      "fireball"  "unknown"   "light"    
[57421] "light"     "triangle"  "sphere"    "unknown"   "other"     "light"    
[57427] "light"     "other"     "circle"    "cone"      "triangle"  "other"    
[57433] "unknown"   "oval"      "other"     "light"     "light"     "triangle" 
[57439] "light"     "light"     "cone"      "unknown"   "other"     "other"    
[57445] "light"     "cigar"     "circle"    "cigar"     "light"     "disk"     
[57451] "rectangle" "light"     "light"     "circle"    "other"     "circle"   
[57457] "oval"      "light"     "other"     "light"     "light"     "light"    
[57463] "circle"    "disk"      "other"     "disk"      "flash"     "formation"
[57469] "light"     "light"     "oval"      "fireball"  "cylinder"  "cigar"    
[57475] NA          "disk"      "sphere"    "fireball"  "light"     "unknown"  
[57481] "oval"      "disk"      "egg"       "cone"      "sphere"    "changing" 
[57487] "disk"      "other"     "disk"      "circle"    "circle"    "triangle" 
[57493] "sphere"    "unknown"   "light"     "changing"  "unknown"   "other"    
[57499] "egg"       "other"     "oval"      "cigar"     "fireball"  "light"    
[57505] "sphere"    "disk"      "triangle"  "light"     "changing"  "unknown"  
[57511] "rectangle" "light"     "triangle"  "unknown"   "cigar"     "disk"     
[57517] "light"     "egg"       "circle"    "circle"    "other"     "unknown"  
[57523] "other"     "formation" "oval"      "unknown"   "other"     "circle"   
[57529] "circle"    "triangle"  "sphere"    "disk"      "disk"      "light"    
[57535] "light"     "changing"  "disk"      "other"     "other"     "oval"     
[57541] "light"     "circle"    "flash"     "unknown"   "fireball"  "teardrop" 
[57547] "flash"     "other"     NA          "light"     "light"     "disk"     
[57553] "light"     "fireball"  "light"     "light"     "triangle"  "disk"     
[57559] "light"     "light"     "light"     "circle"    "light"     "changing" 
[57565] "light"     "rectangle" "unknown"   "light"     "light"     "light"    
[57571] NA          "light"     "light"     "other"     "light"     "triangle" 
[57577] "light"     "flash"     "triangle"  "triangle"  "triangle"  "oval"     
[57583] "light"     "disk"      "cigar"     "disk"      "light"     "cigar"    
[57589] "other"     "sphere"    "rectangle" "fireball"  "fireball"  "teardrop" 
[57595] "circle"    "light"     "circle"    "light"     "light"     "light"    
[57601] "light"     "light"     "light"     "oval"      "flash"     "other"    
[57607] "other"     "formation" "circle"    "cylinder"  "light"     "circle"   
[57613] "fireball"  "light"     "light"     "light"     "sphere"    "circle"   
[57619] "changing"  "unknown"   "light"     "fireball"  "formation" "circle"   
[57625] "light"     "fireball"  "circle"    "disk"      "egg"       "disk"     
[57631] "cigar"     "unknown"   "chevron"   "circle"    "light"     "light"    
[57637] "changing"  "light"     "disk"      "other"     "other"     NA         
[57643] "other"     "disk"      "light"     "light"     "unknown"   NA         
[57649] "light"     "light"     "unknown"   "light"     "light"     "light"    
[57655] "other"     "oval"      "circle"    "sphere"    "changing"  "light"    
[57661] "disk"      "sphere"    "disk"      "disk"      "circle"    "other"    
[57667] "oval"      "sphere"    "light"     "triangle"  "disk"      "fireball" 
[57673] "changing"  "disk"      "disk"      "unknown"   "triangle"  "light"    
[57679] "unknown"   "triangle"  "light"     "light"     NA          "other"    
[57685] "disk"      "oval"      "light"     "circle"    "cylinder"  "other"    
[57691] "oval"      "light"     "fireball"  "formation" "unknown"   "light"    
[57697] "light"     "fireball"  "fireball"  "light"     "fireball"  "light"    
[57703] "unknown"   "fireball"  "fireball"  "light"     "unknown"   "circle"   
[57709] "diamond"   "formation" "triangle"  "flash"     "light"     "changing" 
[57715] "light"     "oval"      "teardrop"  "unknown"   "disk"      "sphere"   
[57721] "disk"      "disk"      "disk"      "disk"      "cylinder"  "light"    
[57727] "light"     "unknown"   "oval"      "disk"      "light"     "fireball" 
[57733] "light"     "light"     "light"     "unknown"   "unknown"   "light"    
[57739] "formation" "other"     "sphere"    "light"     "light"     "circle"   
[57745] "circle"    "light"     "fireball"  "circle"    "unknown"   "sphere"   
[57751] "oval"      "other"     "other"     "triangle"  "fireball"  "circle"   
[57757] "light"     "unknown"   "disk"      "disk"      "light"     "rectangle"
[57763] "sphere"    "sphere"    "sphere"    "disk"      "oval"      "other"    
[57769] "circle"    "light"     "flash"     "fireball"  "oval"      "circle"   
[57775] "unknown"   "sphere"    "light"     "sphere"    "other"     "light"    
[57781] "fireball"  "rectangle" "light"     "changing"  "fireball"  "circle"   
[57787] "triangle"  "oval"      "circle"    "light"     "circle"    "light"    
[57793] "circle"    "light"     "cylinder"  "cylinder"  "changing"  "fireball" 
[57799] "light"     "light"     "light"     "cylinder"  "triangle"  "cigar"    
[57805] "fireball"  "light"     "oval"      "diamond"   "light"     "unknown"  
[57811] "fireball"  "diamond"   "sphere"    "triangle"  "light"     "light"    
[57817] "fireball"  "light"     "cylinder"  "egg"       "diamond"   "cone"     
[57823] "light"     "light"     "light"     "diamond"   "circle"    "fireball" 
[57829] "circle"    "circle"    "light"     "light"     "disk"      "other"    
[57835] "circle"    NA          NA          NA          "formation" "unknown"  
[57841] "triangle"  "light"     "triangle"  "other"     "circle"    "oval"     
[57847] "disk"      "circle"    "fireball"  "circle"    "sphere"    "other"    
[57853] "diamond"   "triangle"  "unknown"   "other"     "light"     "light"    
[57859] "fireball"  "circle"    "light"     "triangle"  "changing"  "circle"   
[57865] "other"     "egg"       "cylinder"  "cigar"     "other"     "circle"   
[57871] "triangle"  "light"     "teardrop"  "teardrop"  "fireball"  "oval"     
[57877] "formation" NA          "light"     "sphere"    "cylinder"  "unknown"  
[57883] "formation" "light"     "light"     "changing"  "circle"    "oval"     
[57889] "circle"    "sphere"    "sphere"    "light"     "fireball"  "egg"      
[57895] "other"     "cigar"     "triangle"  "fireball"  "disk"      "light"    
[57901] "circle"    "chevron"   "oval"      "triangle"  "triangle"  "sphere"   
[57907] "unknown"   "disk"      "unknown"   "oval"      "cigar"     "light"    
[57913] "unknown"   "light"     "formation" "light"     "cigar"     NA         
[57919] "other"     "changing"  "light"     "light"     "light"     "triangle" 
[57925] "other"     "light"     "disk"      "rectangle" "other"     "flash"    
[57931] "fireball"  NA          "oval"      "triangle"  "diamond"   "egg"      
[57937] "triangle"  "light"     "cylinder"  "circle"    "disk"      "light"    
[57943] "unknown"   "light"     "unknown"   "formation" "fireball"  "circle"   
[57949] "fireball"  "diamond"   "light"     "light"     "triangle"  "changing" 
[57955] "light"     "triangle"  "oval"      "circle"    "oval"      "light"    
[57961] "other"     "unknown"   "light"     "triangle"  "light"     "light"    
[57967] "oval"      "teardrop"  "unknown"   "circle"    "triangle"  "egg"      
[57973] "cylinder"  "cigar"     "sphere"    "other"     "oval"      "disk"     
[57979] NA          "other"     "circle"    "light"     "circle"    "sphere"   
[57985] "triangle"  "sphere"    "circle"    "light"     "fireball"  "circle"   
[57991] "unknown"   "fireball"  "light"     "light"     "light"     "fireball" 
[57997] "fireball"  "formation" NA          "changing"  "circle"    "triangle" 
[58003] "light"     "light"     "sphere"    "light"     "light"     "rectangle"
[58009] "light"     "triangle"  "fireball"  "light"     "other"     "rectangle"
[58015] "disk"      "disk"      "circle"    "sphere"    "cylinder"  "changing" 
[58021] NA          NA          NA          NA          NA          "changing" 
[58027] "light"     "other"     "cylinder"  "disk"      "light"     "sphere"   
[58033] "oval"      "circle"    "light"     "fireball"  "cigar"     "unknown"  
[58039] "triangle"  "cylinder"  "triangle"  "oval"      "light"     "circle"   
[58045] "triangle"  "light"     "triangle"  "triangle"  "light"     "circle"   
[58051] "light"     "chevron"   "egg"       "cigar"     "disk"      "egg"      
[58057] "circle"    NA          "circle"    "unknown"   "oval"      "sphere"   
[58063] "circle"    "formation" "light"     "light"     "unknown"   "light"    
[58069] "disk"      "light"     "light"     "disk"      "disk"      "disk"     
[58075] "other"     "unknown"   "sphere"    "oval"      "rectangle" "unknown"  
[58081] "other"     "light"     "disk"      "sphere"    "cone"      "circle"   
[58087] "circle"    "other"     "light"     "unknown"   "diamond"   "disk"     
[58093] "disk"      "unknown"   "diamond"   "oval"      "rectangle" "cylinder" 
[58099] "light"     "triangle"  "light"     "changing"  "unknown"   "triangle" 
[58105] "light"     "light"     "circle"    "sphere"    "disk"      "other"    
[58111] "cigar"     "light"     "light"     "oval"      "light"     "other"    
[58117] "light"     "light"     "light"     "sphere"    "light"     "cigar"    
[58123] "cigar"     "circle"    "triangle"  "circle"    "oval"      "chevron"  
[58129] "disk"      "triangle"  "light"     "circle"    "sphere"    "circle"   
[58135] "oval"      "cylinder"  "diamond"   "triangle"  "light"     "triangle" 
[58141] "circle"    "circle"    "triangle"  "light"     "formation" "light"    
[58147] "unknown"   "oval"      "teardrop"  "circle"    "cigar"     "cigar"    
[58153] "oval"      "teardrop"  "changing"  "sphere"    "light"     "sphere"   
[58159] "sphere"    "light"     "other"     "light"     "triangle"  "fireball" 
[58165] "unknown"   "sphere"    "sphere"    "cigar"     "teardrop"  "fireball" 
[58171] "triangle"  "light"     "triangle"  "light"     "light"     "triangle" 
[58177] "light"     "oval"      "disk"      "changing"  "sphere"    "sphere"   
[58183] "fireball"  "sphere"    "cone"      "circle"    "light"     NA         
[58189] "sphere"    "sphere"    "diamond"   "disk"      "flash"     "triangle" 
[58195] "fireball"  "light"     "disk"      "fireball"  "fireball"  "circle"   
[58201] "circle"    "sphere"    "other"     "unknown"   "rectangle" "light"    
[58207] "cylinder"  "light"     "oval"      "oval"      "circle"    "unknown"  
[58213] "circle"    "triangle"  "fireball"  "fireball"  "light"     "light"    
[58219] "fireball"  "changing"  "disk"      "other"     "light"     "light"    
[58225] "light"     "rectangle" "cigar"     "light"     "other"     NA         
[58231] "light"     "light"     "light"     "triangle"  "unknown"   "unknown"  
[58237] "circle"    "fireball"  "unknown"   "flash"     "cigar"     "cigar"    
[58243] "light"     "unknown"   "rectangle" "circle"    "light"     "sphere"   
[58249] "triangle"  "other"     "circle"    "light"     "triangle"  "unknown"  
[58255] "unknown"   "unknown"   "sphere"    "oval"      "cone"      "other"    
[58261] "other"     "sphere"    "other"     "changing"  "formation" "triangle" 
[58267] "oval"      "circle"    "light"     "light"     "flash"     "sphere"   
[58273] "light"     "disk"      "oval"      "other"     "cigar"     "other"    
[58279] "fireball"  "oval"      "triangle"  "unknown"   "light"     "triangle" 
[58285] "sphere"    "unknown"   "sphere"    "fireball"  "unknown"   "light"    
[58291] "light"     "light"     "light"     "circle"    "light"     "light"    
[58297] "disk"      "disk"      "sphere"    "circle"    "triangle"  "light"    
[58303] "circle"    "light"     "light"     "rectangle" "triangle"  "fireball" 
[58309] "cylinder"  "light"     "disk"      "oval"      "other"     "triangle" 
[58315] "diamond"   "unknown"   "disk"      "fireball"  "unknown"   "egg"      
[58321] "disk"      "light"     "light"     "light"     "diamond"   "cigar"    
[58327] "unknown"   "unknown"   "unknown"   "light"     "fireball"  "circle"   
[58333] "triangle"  "disk"      "light"     "light"     "unknown"   "light"    
[58339] "light"     "light"     "circle"    "light"     "light"     "cigar"    
[58345] "triangle"  "light"     "light"     "disk"      "light"     "disk"     
[58351] "unknown"   "light"     "oval"      "fireball"  "light"     "light"    
[58357] "light"     "light"     "diamond"   "sphere"    "circle"    "light"    
[58363] "light"     "sphere"    "light"     "triangle"  "light"     "other"    
[58369] "fireball"  "triangle"  "light"     "cigar"     "light"     "sphere"   
[58375] "other"     "unknown"   "formation" "egg"       "fireball"  "fireball" 
[58381] "light"     "other"     "light"     "oval"      "fireball"  "flash"    
[58387] "light"     "light"     "light"     "sphere"    "fireball"  "sphere"   
[58393] "light"     "circle"    "fireball"  "oval"      "triangle"  "circle"   
[58399] "diamond"   "sphere"    "other"     "light"     "light"     "unknown"  
[58405] "light"     "sphere"    "circle"    "sphere"    "fireball"  "circle"   
[58411] "light"     "light"     "light"     "cylinder"  "light"     "light"    
[58417] "other"     "fireball"  "light"     "sphere"    "fireball"  "other"    
[58423] "light"     "egg"       "other"     "sphere"    "disk"      "sphere"   
[58429] "fireball"  "oval"      "other"     "oval"      "unknown"   "other"    
[58435] "cigar"     "disk"      "disk"      "light"     "disk"      "unknown"  
[58441] "disk"      NA          "light"     "disk"      "oval"      "disk"     
[58447] "light"     "disk"      "fireball"  "oval"      "light"     "circle"   
[58453] "fireball"  "circle"    NA          "disk"      "cigar"     "light"    
[58459] "disk"      "light"     "diamond"   "disk"      "triangle"  "unknown"  
[58465] "teardrop"  "circle"    "sphere"    "disk"      "circle"    "cigar"    
[58471] "other"     "cylinder"  "teardrop"  "disk"      "disk"      "light"    
[58477] "fireball"  "unknown"   "circle"    "oval"      "disk"      "circle"   
[58483] "other"     "disk"      NA          "triangle"  "cigar"     "disk"     
[58489] "cigar"     "sphere"    "sphere"    "unknown"   "disk"      "triangle" 
[58495] "disk"      "sphere"    NA          "rectangle" "disk"      "disk"     
[58501] "disk"      "triangle"  "circle"    "other"     "rectangle" "other"    
[58507] "triangle"  "other"     "other"     "flash"     "unknown"   "disk"     
[58513] NA          "cigar"     "cigar"     "disk"      "egg"       "oval"     
[58519] "unknown"   "sphere"    NA          "oval"      "disk"      "light"    
[58525] "disk"      "circle"    "circle"    "other"     "other"     "disk"     
[58531] "disk"      "disk"      "cigar"     "disk"      "cigar"     "light"    
[58537] "disk"      "other"     "other"     "circle"    "other"     "light"    
[58543] "circle"    "unknown"   "light"     "disk"      "circle"    "light"    
[58549] "circle"    "oval"      "light"     "circle"    "triangle"  "sphere"   
[58555] "disk"      NA          "sphere"    "oval"      "other"     "light"    
[58561] "disk"      "unknown"   "disk"      "unknown"   "disk"      "disk"     
[58567] "light"     "light"     "sphere"    "oval"      "egg"       "disk"     
[58573] NA          "light"     "disk"      "changing"  "cone"      "sphere"   
[58579] "cone"      "disk"      "disk"      "disk"      "disk"      "oval"     
[58585] "circle"    "fireball"  "disk"      "oval"      "unknown"   "circle"   
[58591] "oval"      "unknown"   "circle"    "other"     "disk"      "light"    
[58597] "disk"      "disk"      "disk"      "light"     "circle"    "other"    
[58603] "circle"    "unknown"   "unknown"   "sphere"    "cigar"     "light"    
[58609] "triangle"  "fireball"  "formation" "sphere"    NA          NA         
[58615] "disk"      "circle"    "sphere"    "cigar"     "disk"      "rectangle"
[58621] "oval"      "cigar"     "disk"      "circle"    "other"     "light"    
[58627] "disk"      "sphere"    "light"     "formation" "cigar"     "triangle" 
[58633] "disk"      "circle"    "circle"    "oval"      "other"     "unknown"  
[58639] "circle"    "light"     "sphere"    "disk"      "unknown"   "egg"      
[58645] NA          "light"     "other"     "other"     NA          NA         
[58651] "disk"      "fireball"  "sphere"    "disk"      "diamond"   "oval"     
[58657] "light"     "circle"    "disk"      "disk"      "light"     "disk"     
[58663] "triangle"  "light"     "flash"     "other"     "diamond"   "oval"     
[58669] "disk"      "fireball"  "oval"      "egg"       "circle"    "disk"     
[58675] "formation" "disk"      "other"     "cylinder"  "fireball"  "circle"   
[58681] "disk"      "oval"      "triangle"  "oval"      "disk"      "formation"
[58687] "light"     "unknown"   "disk"      "light"     "oval"      "other"    
[58693] "formation" "triangle"  "light"     "circle"    "fireball"  NA         
[58699] "rectangle" "other"     "disk"      "light"     "circle"    "light"    
[58705] "flash"     NA          "circle"    "other"     "sphere"    "formation"
[58711] "disk"      "circle"    "unknown"   "triangle"  "sphere"    "circle"   
[58717] "cigar"     NA          "disk"      "circle"    "light"     "circle"   
[58723] "triangle"  "other"     "oval"      "sphere"    "diamond"   "disk"     
[58729] NA          NA          "circle"    "sphere"    NA          "unknown"  
[58735] "light"     "circle"    "sphere"    "disk"      "formation" NA         
[58741] "unknown"   "sphere"    "disk"      "triangle"  "disk"      "light"    
[58747] "light"     "chevron"   NA          "light"     "light"     "circle"   
[58753] "sphere"    "light"     "disk"      "other"     "triangle"  "light"    
[58759] "oval"      "light"     "other"     "triangle"  NA          "other"    
[58765] "disk"      "unknown"   "light"     "triangle"  "cigar"     "sphere"   
[58771] "triangle"  "disk"      "circle"    "oval"      "disk"      "triangle" 
[58777] "sphere"    "light"     "triangle"  "other"     "triangle"  "other"    
[58783] "cylinder"  "cylinder"  "triangle"  "triangle"  "triangle"  "other"    
[58789] "circle"    "unknown"   "triangle"  "chevron"   "disk"      "diamond"  
[58795] "diamond"   "circle"    "rectangle" "unknown"   "triangle"  "other"    
[58801] "sphere"    "triangle"  "light"     "sphere"    "changing"  "other"    
[58807] NA          "triangle"  "other"     "light"     "light"     "diamond"  
[58813] "triangle"  "disk"      "circle"    "other"     "rectangle" "triangle" 
[58819] "triangle"  "light"     NA          "disk"      "unknown"   "egg"      
[58825] "light"     "cigar"     "circle"    "disk"      "circle"    NA         
[58831] "formation" "changing"  NA          "circle"    "other"     "light"    
[58837] "disk"      "other"     "circle"    "light"     NA          "disk"     
[58843] "disk"      "light"     "other"     "triangle"  "cigar"     "circle"   
[58849] "cylinder"  "light"     "light"     "triangle"  "light"     "cigar"    
[58855] "unknown"   "flash"     "diamond"   "disk"      "light"     "triangle" 
[58861] "changing"  "cylinder"  "sphere"    "cigar"     "oval"      "unknown"  
[58867] "cylinder"  NA          "circle"    "fireball"  "oval"      "unknown"  
[58873] "other"     "sphere"    "oval"      "oval"      "light"     "cigar"    
[58879] "triangle"  "triangle"  NA          "rectangle" "rectangle" "circle"   
[58885] "circle"    "cigar"     "triangle"  "other"     "circle"    "cylinder" 
[58891] "light"     "formation" "triangle"  "sphere"    "light"     "triangle" 
[58897] "circle"    "other"     "formation" "circle"    "oval"      NA         
[58903] "circle"    "other"     "circle"    "light"     "circle"    "oval"     
[58909] "other"     NA          "unknown"   "formation" "rectangle" "triangle" 
[58915] "circle"    "light"     "other"     "circle"    "light"     "disk"     
[58921] "light"     "fireball"  "light"     "oval"      "light"     "triangle" 
[58927] "sphere"    "disk"      "flash"     "oval"      "egg"       "unknown"  
[58933] "other"     "light"     "cigar"     "sphere"    "rectangle" "other"    
[58939] "light"     "triangle"  "light"     "formation" "circle"    "light"    
[58945] "unknown"   "light"     "unknown"   "light"     "other"     "cigar"    
[58951] "other"     "light"     "unknown"   "fireball"  "oval"      NA         
[58957] "other"     "triangle"  "fireball"  "disk"      "disk"      "diamond"  
[58963] "disk"      "other"     "triangle"  "other"     "circle"    "changing" 
[58969] "circle"    "flash"     "flash"     "light"     "unknown"   "other"    
[58975] "other"     "unknown"   "circle"    "diamond"   "sphere"    "rectangle"
[58981] "other"     "cross"     "rectangle" "fireball"  "other"     "other"    
[58987] "other"     "triangle"  "light"     "circle"    "light"     "triangle" 
[58993] "light"     "sphere"    "triangle"  "sphere"    "triangle"  "oval"     
[58999] "light"     "other"     "unknown"   "circle"    "circle"    "sphere"   
[59005] "light"     "light"     "light"     "unknown"   "light"     "circle"   
[59011] "circle"    "light"     "unknown"   "other"     "cigar"     "circle"   
[59017] "circle"    "cigar"     "light"     "oval"      "sphere"    "disk"     
[59023] "fireball"  "fireball"  "circle"    "sphere"    "cigar"     "other"    
[59029] "oval"      "other"     "unknown"   "other"     NA          "light"    
[59035] "diamond"   "fireball"  "light"     NA          "sphere"    "triangle" 
[59041] NA          "fireball"  "oval"      "triangle"  "rectangle" "other"    
[59047] "circle"    "circle"    "unknown"   "other"     "other"     "sphere"   
[59053] "disk"      "egg"       "teardrop"  "light"     "changing"  "light"    
[59059] "triangle"  "disk"      "formation" "sphere"    NA          "triangle" 
[59065] "light"     "triangle"  "oval"      "sphere"    "triangle"  "cigar"    
[59071] "light"     "flash"     "disk"      "disk"      "formation" "light"    
[59077] "rectangle" "fireball"  "unknown"   "sphere"    "triangle"  "light"    
[59083] "light"     "circle"    "rectangle" "oval"      "light"     "other"    
[59089] "light"     "triangle"  "triangle"  "sphere"    "circle"    "circle"   
[59095] "circle"    "circle"    "fireball"  "other"     "cigar"     "disk"     
[59101] "cigar"     "cylinder"  "other"     "sphere"    "light"     "flash"    
[59107] "other"     "light"     "light"     "unknown"   "triangle"  "triangle" 
[59113] "light"     "rectangle" "circle"    "light"     "light"     NA         
[59119] "light"     "circle"    "circle"    "triangle"  "sphere"    "triangle" 
[59125] "changing"  "oval"      "cone"      "sphere"    "oval"      "light"    
[59131] "fireball"  "disk"      "oval"      "other"     "circle"    "triangle" 
[59137] "unknown"   "disk"      "cylinder"  "circle"    "light"     NA         
[59143] "other"     "unknown"   "other"     "circle"    "other"     NA         
[59149] "chevron"   "oval"      "cylinder"  "sphere"    "formation" "light"    
[59155] "light"     "unknown"   "sphere"    "triangle"  "light"     "light"    
[59161] "oval"      "other"     "flash"     "oval"      "light"     "teardrop" 
[59167] "circle"    "triangle"  "cigar"     "sphere"    "teardrop"  "light"    
[59173] "sphere"    "oval"      "egg"       NA          "triangle"  "light"    
[59179] "circle"    "light"     "light"     "light"     "cigar"     NA         
[59185] "light"     "fireball"  "light"     "circle"    "fireball"  "fireball" 
[59191] "circle"    "disk"      "sphere"    "disk"      "fireball"  "light"    
[59197] "light"     "triangle"  "fireball"  "fireball"  "disk"      "light"    
[59203] "fireball"  "light"     "light"     "circle"    "light"     "circle"   
[59209] "circle"    "sphere"    "sphere"    "sphere"    "circle"    "cylinder" 
[59215] "light"     "fireball"  "sphere"    "sphere"    "light"     "changing" 
[59221] "fireball"  "light"     "light"     "oval"      "cigar"     NA         
[59227] "disk"      "sphere"    "diamond"   "other"     "light"     "light"    
[59233] "light"     "fireball"  "fireball"  "rectangle" "fireball"  "unknown"  
[59239] "circle"    "light"     "unknown"   "triangle"  "triangle"  "triangle" 
[59245] "oval"      "disk"      "other"     "other"     "triangle"  "disk"     
[59251] "sphere"    "other"     NA          "formation" "other"     NA         
[59257] NA          NA          NA          NA          "disk"      "light"    
[59263] "cylinder"  "triangle"  "oval"      "other"     "oval"      "triangle" 
[59269] "circle"    "light"     "triangle"  "light"     "circle"    "sphere"   
[59275] "triangle"  "triangle"  "disk"      "oval"      "other"     "fireball" 
[59281] "light"     "circle"    "flash"     "chevron"   "fireball"  "disk"     
[59287] "oval"      "flash"     "cone"      NA          "unknown"   "unknown"  
[59293] "light"     "circle"    "changing"  "light"     "light"     "sphere"   
[59299] "triangle"  "unknown"   "triangle"  "triangle"  "light"     "disk"     
[59305] "circle"    "light"     NA          NA          "fireball"  NA         
[59311] "flash"     "light"     "unknown"   "flash"     "unknown"   "disk"     
[59317] NA          "unknown"   "sphere"    "other"     "oval"      "triangle" 
[59323] "unknown"   "changing"  "circle"    "light"     "light"     "disk"     
[59329] "fireball"  "circle"    "teardrop"  "light"     "cylinder"  "circle"   
[59335] "cigar"     "circle"    "oval"      "sphere"    "egg"       "triangle" 
[59341] NA          "oval"      "triangle"  "cone"      "light"     "disk"     
[59347] "sphere"    "sphere"    "cigar"     "light"     "light"     "unknown"  
[59353] "rectangle" "light"     "other"     "disk"      "circle"    "formation"
[59359] "other"     "triangle"  "sphere"    "disk"      "circle"    "unknown"  
[59365] "fireball"  "circle"    "other"     "sphere"    "fireball"  "sphere"   
[59371] NA          "other"     "unknown"   "circle"    "changing"  "light"    
[59377] "formation" "light"     "sphere"    "light"     "sphere"    "light"    
[59383] "fireball"  "triangle"  "disk"      "light"     "circle"    "other"    
[59389] "light"     "egg"       "triangle"  "rectangle" "formation" "triangle" 
[59395] "oval"      "fireball"  "light"     "triangle"  "fireball"  "light"    
[59401] "circle"    "light"     "light"     "cigar"     "circle"    "light"    
[59407] "oval"      "fireball"  "fireball"  "other"     "light"     "circle"   
[59413] "sphere"    "fireball"  "light"     "oval"      "light"     "sphere"   
[59419] "circle"    "circle"    "circle"    "light"     "disk"      "circle"   
[59425] "disk"      "disk"      "disk"      "other"     "cylinder"  "chevron"  
[59431] "triangle"  NA          NA          "other"     "other"     "other"    
[59437] "triangle"  "sphere"    "triangle"  "light"     "light"     "oval"     
[59443] "light"     "other"     "light"     NA          "disk"      "disk"     
[59449] "oval"      "sphere"    "other"     "sphere"    "light"     "light"    
[59455] "egg"       "flash"     "cigar"     "circle"    "fireball"  "diamond"  
[59461] "oval"      "disk"      "unknown"   "unknown"   "other"     "light"    
[59467] "circle"    "fireball"  "disk"      "sphere"    "light"     "formation"
[59473] "light"     "other"     "fireball"  "diamond"   "oval"      "cigar"    
[59479] "light"     "flash"     "circle"    "light"     "light"     "light"    
[59485] "disk"      "light"     "changing"  "light"     "other"     "flash"    
[59491] "cylinder"  "disk"      "formation" "changing"  "disk"      "rectangle"
[59497] NA          "unknown"   "light"     "disk"      "sphere"    "oval"     
[59503] "light"     "sphere"    "chevron"   "light"     "oval"      "light"    
[59509] "light"     "unknown"   "triangle"  "fireball"  NA          "other"    
[59515] "oval"      "circle"    "cigar"     "circle"    "formation" "triangle" 
[59521] "light"     "cone"      "teardrop"  "disk"      "circle"    "light"    
[59527] "fireball"  "circle"    "light"     "diamond"   "flash"     "sphere"   
[59533] "circle"    "rectangle" "other"     "formation" "light"     "disk"     
[59539] "unknown"   "fireball"  "triangle"  "other"     "light"     "oval"     
[59545] "circle"    "formation" "formation" "disk"      "egg"       "fireball" 
[59551] "sphere"    "oval"      "light"     "rectangle" "light"     "circle"   
[59557] "light"     "sphere"    "flash"     "circle"    "cigar"     "sphere"   
[59563] "oval"      "formation" "formation" "triangle"  "fireball"  "sphere"   
[59569] "other"     "changing"  "disk"      "unknown"   "light"     "light"    
[59575] "light"     "changing"  "sphere"    "oval"      "sphere"    "circle"   
[59581] "circle"    "disk"      "other"     "disk"      "unknown"   "disk"     
[59587] "disk"      "oval"      "other"     "unknown"   "disk"      "light"    
[59593] "unknown"   "light"     "light"     "triangle"  "other"     "other"    
[59599] "triangle"  NA          NA          "disk"      "other"     "disk"     
[59605] "triangle"  "other"     "egg"       "light"     "flash"     NA         
[59611] "other"     "light"     "triangle"  "triangle"  "unknown"   NA         
[59617] "light"     "disk"      "light"     "oval"      "fireball"  "triangle" 
[59623] "other"     "sphere"    "sphere"    "fireball"  "sphere"    "light"    
[59629] "other"     "oval"      "other"     "cigar"     "egg"       "other"    
[59635] "light"     "triangle"  "fireball"  "circle"    "other"     NA         
[59641] NA          "unknown"   "changing"  "oval"      "circle"    "other"    
[59647] "light"     "unknown"   "circle"    "circle"    "light"     "light"    
[59653] "fireball"  "disk"      "light"     "chevron"   "light"     "triangle" 
[59659] "triangle"  "fireball"  "changing"  "light"     "other"     "disk"     
[59665] "disk"      "sphere"    "cylinder"  "circle"    "light"     "triangle" 
[59671] "other"     "cylinder"  "formation" "cross"     "other"     "sphere"   
[59677] "changing"  "fireball"  "triangle"  "unknown"   "rectangle" "light"    
[59683] "cylinder"  "teardrop"  "cigar"     "fireball"  "light"     "sphere"   
[59689] "disk"      "light"     "sphere"    "light"     "other"     "light"    
[59695] "fireball"  "light"     "light"     "unknown"   "triangle"  "unknown"  
[59701] "light"     "unknown"   "light"     "flash"     "fireball"  "circle"   
[59707] "cigar"     "unknown"   "sphere"    "triangle"  "light"     NA         
[59713] "light"     "circle"    "changing"  "light"     "light"     "triangle" 
[59719] "unknown"   "triangle"  "triangle"  "light"     "disk"      "sphere"   
[59725] "sphere"    NA          "other"     "sphere"    "light"     "circle"   
[59731] NA          "rectangle" "light"     "light"     "other"     "changing" 
[59737] "egg"       "light"     "circle"    "light"     "teardrop"  "light"    
[59743] "other"     "sphere"    "diamond"   "circle"    "light"     "triangle" 
[59749] "sphere"    "unknown"   "light"     "other"     "cylinder"  "circle"   
[59755] "oval"      "disk"      "light"     "formation" "light"     "circle"   
[59761] "sphere"    "light"     "unknown"   "circle"    "circle"    "fireball" 
[59767] "circle"    "light"     "light"     "light"     "circle"    "circle"   
[59773] "disk"      "light"     "cylinder"  "unknown"   "sphere"    "light"    
[59779] NA          "flash"     "unknown"   "changing"  "fireball"  "cylinder" 
[59785] "light"     "circle"    "circle"    "light"     "light"     "formation"
[59791] "diamond"   "sphere"    "disk"      "cigar"     "circle"    "disk"     
[59797] "disk"      "disk"      "light"     "egg"       "other"     "circle"   
[59803] "diamond"   NA          "fireball"  "cigar"     "light"     "circle"   
[59809] "circle"    "oval"      "cigar"     "disk"      "disk"      "disk"     
[59815] "oval"      "egg"       "sphere"    "disk"      "light"     "diamond"  
[59821] "cylinder"  "sphere"    "triangle"  "circle"    "disk"      "triangle" 
[59827] "cigar"     "disk"      "circle"    "sphere"    "disk"      "fireball" 
[59833] "circle"    "light"     "disk"      "disk"      "other"     "fireball" 
[59839] "disk"      "oval"      "triangle"  "other"     "cigar"     "unknown"  
[59845] "sphere"    "disk"      "triangle"  "other"     "circle"    "light"    
[59851] "unknown"   "light"     "circle"    "sphere"    "circle"    "other"    
[59857] "other"     NA          "triangle"  "changing"  "disk"      "light"    
[59863] "circle"    "circle"    "cone"      "egg"       "sphere"    "formation"
[59869] "sphere"    "fireball"  "fireball"  "oval"      "light"     "light"    
[59875] "light"     "diamond"   "light"     "changing"  "sphere"    "circle"   
[59881] "unknown"   "triangle"  "light"     "fireball"  "cigar"     "formation"
[59887] "rectangle" "sphere"    "circle"    "oval"      "unknown"   "light"    
[59893] "cigar"     "sphere"    "disk"      "cigar"     "disk"      "triangle" 
[59899] "triangle"  "triangle"  "flash"     "other"     "formation" "light"    
[59905] "changing"  "triangle"  "triangle"  "light"     "light"     "triangle" 
[59911] "light"     "sphere"    "oval"      "unknown"   "sphere"    "unknown"  
[59917] "disk"      "egg"       "light"     "cylinder"  "sphere"    "circle"   
[59923] "sphere"    "circle"    "light"     "light"     "circle"    "oval"     
[59929] "fireball"  "other"     "diamond"   "oval"      "changing"  "circle"   
[59935] "light"     "light"     "disk"      "unknown"   "other"     "circle"   
[59941] "circle"    "disk"      "rectangle" "triangle"  "changing"  "unknown"  
[59947] "other"     "formation" "disk"      "unknown"   "triangle"  "light"    
[59953] "circle"    "circle"    "fireball"  "sphere"    "teardrop"  "changing" 
[59959] "disk"      "fireball"  "fireball"  "sphere"    "light"     "sphere"   
[59965] "sphere"    "oval"      "light"     "light"     "formation" "fireball" 
[59971] "other"     "light"     "unknown"   "oval"      "light"     "other"    
[59977] "unknown"   "light"     "changing"  "other"     "circle"    "changing" 
[59983] "unknown"   "disk"      "circle"    "chevron"   "light"     "oval"     
[59989] "formation" "disk"      "circle"    "sphere"    "cigar"     "light"    
[59995] "circle"    "light"     "triangle"  "light"     "light"     "circle"   
[60001] "light"     "unknown"   "diamond"   "unknown"   "light"     "triangle" 
[60007] "circle"    "fireball"  "oval"      "fireball"  "cylinder"  "triangle" 
[60013] "light"     "fireball"  "unknown"   "circle"    "circle"    "sphere"   
[60019] "sphere"    "light"     "circle"    "unknown"   "disk"      "changing" 
[60025] "oval"      "sphere"    "teardrop"  "light"     "triangle"  "triangle" 
[60031] "light"     "sphere"    "unknown"   "changing"  "sphere"    "other"    
[60037] "circle"    "egg"       "unknown"   "light"     "unknown"   "light"    
[60043] "oval"      "triangle"  "light"     "circle"    "sphere"    "sphere"   
[60049] "other"     "light"     "triangle"  NA          "sphere"    "unknown"  
[60055] "other"     "fireball"  "light"     "circle"    "light"     "teardrop" 
[60061] "unknown"   "sphere"    "fireball"  "unknown"   "sphere"    "light"    
[60067] "fireball"  "other"     "changing"  "disk"      "circle"    "unknown"  
[60073] "formation" "cylinder"  "cylinder"  "light"     "disk"      "oval"     
[60079] "oval"      "disk"      "sphere"    "light"     "circle"    "disk"     
[60085] "other"     "disk"      "light"     "other"     "disk"      NA         
[60091] NA          "triangle"  "triangle"  "light"     "fireball"  "cylinder" 
[60097] "cylinder"  "circle"    "triangle"  "changing"  "fireball"  "other"    
[60103] "fireball"  "circle"    "fireball"  "fireball"  "sphere"    "cylinder" 
[60109] "diamond"   "circle"    "light"     "unknown"   "unknown"   "oval"     
[60115] "sphere"    "unknown"   "light"     "unknown"   "unknown"   "circle"   
[60121] "unknown"   "rectangle" "light"     NA          "light"     "circle"   
[60127] "fireball"  "fireball"  "fireball"  "light"     "light"     "disk"     
[60133] "sphere"    "disk"      "other"     "triangle"  "unknown"   "light"    
[60139] "triangle"  NA          "unknown"   "triangle"  "fireball"  "oval"     
[60145] "egg"       "cylinder"  "light"     "unknown"   "formation" "light"    
[60151] "light"     "formation" "unknown"   "fireball"  "circle"    "sphere"   
[60157] "fireball"  "formation" "other"     "fireball"  "sphere"    "unknown"  
[60163] "other"     "oval"      "circle"    "circle"    "disk"      "oval"     
[60169] "other"     "other"     "cone"      "circle"    "disk"      "changing" 
[60175] "light"     "triangle"  "sphere"    "unknown"   "disk"      "changing" 
[60181] "disk"      "changing"  "disk"      "sphere"    "disk"      "other"    
[60187] "circle"    "formation" NA          "cigar"     "light"     "light"    
[60193] "sphere"    "chevron"   "triangle"  "triangle"  "light"     "triangle" 
[60199] "light"     "changing"  "changing"  "fireball"  "oval"      "rectangle"
[60205] "triangle"  "light"     "sphere"    "light"     "light"     "light"    
[60211] "triangle"  "changing"  "other"     "disk"      "disk"      "unknown"  
[60217] "sphere"    "triangle"  "formation" "light"     "light"     "light"    
[60223] "cigar"     "light"     "disk"      "light"     "fireball"  "fireball" 
[60229] "sphere"    "oval"      "sphere"    "triangle"  "light"     "light"    
[60235] "changing"  "light"     "light"     "triangle"  "light"     "light"    
[60241] "fireball"  "light"     "light"     "sphere"    "light"     "formation"
[60247] "sphere"    "circle"    "flash"     "light"     "light"     "cylinder" 
[60253] "light"     "light"     NA          "changing"  "triangle"  "triangle" 
[60259] "disk"      "unknown"   "fireball"  "light"     "unknown"   "light"    
[60265] "triangle"  "unknown"   "light"     "light"     "disk"      "triangle" 
[60271] "oval"      "sphere"    "light"     "light"     "other"     "fireball" 
[60277] "sphere"    "fireball"  "formation" "sphere"    "light"     "sphere"   
[60283] "unknown"   "other"     "unknown"   "unknown"   "fireball"  "light"    
[60289] "disk"      "light"     "disk"      "oval"      "light"     "unknown"  
[60295] "fireball"  "other"     "diamond"   "disk"      "disk"      "sphere"   
[60301] "teardrop"  "changing"  NA          "other"     NA          "changing" 
[60307] "disk"      "other"     "disk"      "light"     "unknown"   "light"    
[60313] "other"     "other"     "rectangle" "other"     "light"     "light"    
[60319] "diamond"   "cigar"     "light"     "changing"  "light"     "oval"     
[60325] "triangle"  "unknown"   "triangle"  "triangle"  "circle"    "changing" 
[60331] "cigar"     "diamond"   "other"     "circle"    "flash"     "light"    
[60337] "formation" "oval"      "triangle"  NA          "disk"      "disk"     
[60343] "fireball"  "unknown"   "disk"      "diamond"   "sphere"    "other"    
[60349] "disk"      "diamond"   "rectangle" "light"     "light"     "light"    
[60355] "triangle"  "circle"    "other"     "circle"    "disk"      "light"    
[60361] "triangle"  "triangle"  "light"     "circle"    "sphere"    "changing" 
[60367] "light"     "light"     "disk"      "circle"    "light"     "light"    
[60373] "triangle"  "triangle"  "light"     "unknown"   "circle"    "disk"     
[60379] "other"     "formation" "light"     "light"     "triangle"  "disk"     
[60385] NA          "light"     "egg"       "disk"      NA          "flash"    
[60391] "light"     "light"     "sphere"    "sphere"    "circle"    "circle"   
[60397] "light"     "other"     "other"     "triangle"  "sphere"    "oval"     
[60403] "other"     "other"     "circle"    "light"     "light"     "light"    
[60409] "circle"    "light"     "other"     NA          "teardrop"  NA         
[60415] "light"     "other"     "light"     "other"     "flash"     "circle"   
[60421] "light"     "other"     "changing"  "sphere"    "oval"      "light"    
[60427] "formation" "circle"    "formation" "circle"    "fireball"  "other"    
[60433] "sphere"    "sphere"    NA          "formation" "light"     "circle"   
[60439] "other"     "light"     "circle"    "light"     "cylinder"  "circle"   
[60445] "light"     "other"     "fireball"  "fireball"  "light"     "sphere"   
[60451] "circle"    "circle"    NA          "oval"      "fireball"  "changing" 
[60457] "other"     "light"     "unknown"   "light"     "circle"    "triangle" 
[60463] "fireball"  "triangle"  "changing"  "other"     "sphere"    "changing" 
[60469] "sphere"    "sphere"    "cross"     "light"     "light"     "chevron"  
[60475] "sphere"    "light"     NA          "circle"    "circle"    "unknown"  
[60481] "diamond"   "disk"      "oval"      "oval"      "sphere"    "light"    
[60487] "flash"     "fireball"  "fireball"  "triangle"  "other"     "triangle" 
[60493] "egg"       "sphere"    "sphere"    "oval"      "circle"    "disk"     
[60499] "cigar"     "sphere"    NA          NA          NA          "light"    
[60505] "other"     "triangle"  "formation" "triangle"  "diamond"   "other"    
[60511] "light"     NA          "unknown"   "oval"      "light"     "light"    
[60517] "light"     NA          "disk"      "circle"    "light"     "disk"     
[60523] "teardrop"  "light"     "light"     "cylinder"  "triangle"  "light"    
[60529] "light"     "formation" "unknown"   "cigar"     "rectangle" "cylinder" 
[60535] "light"     "egg"       "circle"    "light"     "sphere"    "unknown"  
[60541] NA          "circle"    "light"     "formation" "flash"     "other"    
[60547] "oval"      "unknown"   "sphere"    "cigar"     "fireball"  "fireball" 
[60553] "unknown"   "circle"    "light"     "unknown"   "light"     "oval"     
[60559] "circle"    "formation" "circle"    "light"     "formation" "other"    
[60565] "sphere"    "sphere"    "disk"      "sphere"    "sphere"    "triangle" 
[60571] "light"     "fireball"  "light"     "disk"      "unknown"   "circle"   
[60577] "other"     "diamond"   "circle"    "teardrop"  "unknown"   "disk"     
[60583] "other"     "circle"    "triangle"  "light"     "other"     "light"    
[60589] "unknown"   "rectangle" "sphere"    "circle"    "cross"     "sphere"   
[60595] "light"     "sphere"    "light"     "light"     "chevron"   "light"    
[60601] "other"     "formation" "other"     "disk"      "circle"    "unknown"  
[60607] "cigar"     "triangle"  "other"     "triangle"  "rectangle" "light"    
[60613] "light"     "cigar"     NA          "oval"      "fireball"  "sphere"   
[60619] NA          "egg"       "sphere"    "fireball"  NA          "oval"     
[60625] "formation" NA          "light"     "unknown"   "circle"    "changing" 
[60631] "other"     "other"     "other"     "formation" "fireball"  "light"    
[60637] "light"     "light"     "other"     "circle"    "other"     "triangle" 
[60643] "light"     "light"     "fireball"  "oval"      "oval"      "unknown"  
[60649] "sphere"    "light"     "formation" "oval"      "light"     "fireball" 
[60655] "light"     "sphere"    "circle"    "oval"      "changing"  "disk"     
[60661] "light"     "circle"    "fireball"  "other"     "circle"    "diamond"  
[60667] "triangle"  "fireball"  "circle"    "light"     "light"     "fireball" 
[60673] "formation" "circle"    "triangle"  "circle"    "fireball"  "light"    
[60679] "fireball"  "flash"     "fireball"  "disk"      "formation" "light"    
[60685] "circle"    "cross"     "unknown"   "light"     "fireball"  "fireball" 
[60691] "sphere"    "oval"      "light"     "formation" "triangle"  "light"    
[60697] "circle"    "sphere"    "other"     "disk"      "formation" "light"    
[60703] "disk"      "cigar"     "other"     "teardrop"  "light"     "light"    
[60709] "disk"      "light"     "other"     "other"     "diamond"   "cigar"    
[60715] "circle"    "circle"    "sphere"    "oval"      "light"     "circle"   
[60721] "sphere"    "unknown"   "disk"      "sphere"    "disk"      "triangle" 
[60727] "circle"    "triangle"  "formation" "egg"       "light"     "oval"     
[60733] NA          "light"     "light"     "light"     "circle"    "fireball" 
[60739] "oval"      "light"     "light"     "light"     "triangle"  "triangle" 
[60745] "triangle"  "other"     "other"     "light"     "sphere"    "formation"
[60751] "sphere"    "triangle"  "unknown"   "circle"    "other"     "disk"     
[60757] "circle"    "triangle"  "other"     "light"     "circle"    NA         
[60763] "fireball"  "rectangle" "unknown"   "sphere"    "sphere"    "disk"     
[60769] "triangle"  "other"     "fireball"  "other"     "light"     "cigar"    
[60775] "light"     "sphere"    "unknown"   "disk"      "formation" "light"    
[60781] "circle"    "teardrop"  "sphere"    "egg"       "cigar"     "fireball" 
[60787] "sphere"    "light"     "other"     "circle"    "diamond"   "circle"   
[60793] "light"     "other"     "light"     "unknown"   "other"     "cigar"    
[60799] "sphere"    "circle"    "cross"     "changing"  "triangle"  "other"    
[60805] "fireball"  "unknown"   "disk"      "unknown"   "triangle"  "other"    
[60811] "light"     "unknown"   "other"     "circle"    "fireball"  "triangle" 
[60817] "disk"      "disk"      "unknown"   "light"     "unknown"   "light"    
[60823] "light"     "unknown"   "light"     "circle"    "light"     "diamond"  
[60829] "light"     "circle"    "sphere"    "cross"     "triangle"  "fireball" 
[60835] "light"     "triangle"  "light"     "triangle"  "chevron"   "fireball" 
[60841] "diamond"   "fireball"  "changing"  "light"     "oval"      "oval"     
[60847] "circle"    "other"     "light"     "circle"    "formation" "triangle" 
[60853] "disk"      "sphere"    "light"     "light"     "light"     "light"    
[60859] "light"     "light"     "circle"    "sphere"    "cigar"     "cigar"    
[60865] "other"     "circle"    "light"     "light"     "light"     "light"    
[60871] "triangle"  "circle"    "light"     "circle"    "circle"    "light"    
[60877] "oval"      "light"     "cone"      "light"     "triangle"  "circle"   
[60883] "triangle"  "sphere"    "circle"    "unknown"   "circle"    "circle"   
[60889] "rectangle" "other"     "light"     "sphere"    "changing"  "disk"     
[60895] "disk"      "disk"      "circle"    "light"     "light"     "circle"   
[60901] "formation" "light"     "light"     "triangle"  "other"     "sphere"   
[60907] "other"     "rectangle" "unknown"   "light"     "unknown"   NA         
[60913] "triangle"  "light"     "unknown"   "formation" "light"     "circle"   
[60919] "triangle"  "fireball"  "light"     "light"     "circle"    "light"    
[60925] "light"     "circle"    "disk"      "egg"       "light"     "unknown"  
[60931] "other"     "light"     "oval"      "rectangle" "other"     "disk"     
[60937] "changing"  "light"     "teardrop"  "unknown"   "teardrop"  "fireball" 
[60943] "light"     "light"     "fireball"  "light"     "sphere"    "light"    
[60949] "fireball"  "fireball"  "cigar"     "fireball"  "light"     "light"    
[60955] "light"     "oval"      "triangle"  "triangle"  "light"     "light"    
[60961] "light"     "light"     "rectangle" "light"     "sphere"    "light"    
[60967] "cylinder"  "circle"    "cylinder"  "other"     "cylinder"  "light"    
[60973] "circle"    "formation" "diamond"   "disk"      "disk"      "light"    
[60979] "circle"    "fireball"  "sphere"    "disk"      "light"     "triangle" 
[60985] "unknown"   "fireball"  "circle"    "fireball"  "fireball"  "oval"     
[60991] "light"     "light"     "light"     "circle"    "fireball"  "light"    
[60997] "circle"    "light"     "fireball"  "egg"       "formation" "triangle" 
[61003] "oval"      "sphere"    "fireball"  "diamond"   "sphere"    "light"    
[61009] "sphere"    "sphere"    "light"     "light"     "light"     "light"    
[61015] NA          "circle"    "sphere"    "circle"    "other"     "light"    
[61021] "light"     "light"     "fireball"  "oval"      "egg"       "unknown"  
[61027] "sphere"    "sphere"    "triangle"  NA          NA          "oval"     
[61033] "fireball"  "light"     "triangle"  "cylinder"  "unknown"   "rectangle"
[61039] "egg"       "light"     "disk"      NA          "other"     "cylinder" 
[61045] "cigar"     "cigar"     "triangle"  "light"     "other"     "sphere"   
[61051] "light"     "circle"    "disk"      "oval"      "oval"      "sphere"   
[61057] "flash"     "triangle"  "unknown"   "unknown"   "light"     "changing" 
[61063] "sphere"    "light"     "light"     "changing"  "light"     "cylinder" 
[61069] "fireball"  "fireball"  "light"     "egg"       "teardrop"  "light"    
[61075] "triangle"  "light"     "disk"      "rectangle" "flash"     "circle"   
[61081] "changing"  "circle"    "disk"      "light"     "unknown"   "light"    
[61087] "unknown"   "light"     "light"     "triangle"  "sphere"    "triangle" 
[61093] "oval"      "unknown"   "light"     "disk"      "light"     "cylinder" 
[61099] "light"     "light"     "light"     "light"     "light"     "sphere"   
[61105] "light"     "disk"      "disk"      "egg"       "circle"    "light"    
[61111] "flash"     "flash"     "light"     "circle"    "oval"      "light"    
[61117] "diamond"   "other"     "egg"       "teardrop"  "other"     "unknown"  
[61123] "cigar"     "unknown"   "light"     "oval"      "light"     "other"    
[61129] "triangle"  "light"     "changing"  "sphere"    "light"     "changing" 
[61135] "fireball"  "other"     "triangle"  "circle"    "light"     "other"    
[61141] "light"     "teardrop"  "triangle"  "formation" "unknown"   "sphere"   
[61147] "sphere"    "unknown"   "unknown"   "triangle"  "unknown"   NA         
[61153] "circle"    "changing"  "circle"    "changing"  "circle"    "cylinder" 
[61159] "other"     "triangle"  "circle"    "light"     NA          "chevron"  
[61165] "disk"      "circle"    "egg"       "oval"      "triangle"  "other"    
[61171] "unknown"   "rectangle" "diamond"   "oval"      "light"     "triangle" 
[61177] "circle"    "light"     "light"     "other"     "triangle"  "light"    
[61183] "unknown"   "light"     "light"     "circle"    "triangle"  "circle"   
[61189] "unknown"   "changing"  "light"     "changing"  "light"     "circle"   
[61195] "flash"     "chevron"   "cigar"     "circle"    "flash"     "circle"   
[61201] "triangle"  "light"     "unknown"   "light"     "light"     "disk"     
[61207] "rectangle" "oval"      "other"     "light"     "circle"    "circle"   
[61213] "rectangle" "circle"    "light"     "fireball"  "other"     "sphere"   
[61219] "cross"     "changing"  "sphere"    "cigar"     "light"     "fireball" 
[61225] "chevron"   "light"     "fireball"  "sphere"    "triangle"  "light"    
[61231] "fireball"  "light"     NA          "light"     "light"     "light"    
[61237] "light"     "light"     "fireball"  "fireball"  "fireball"  "sphere"   
[61243] "unknown"   "other"     "circle"    "flash"     "unknown"   "fireball" 
[61249] "circle"    "other"     "oval"      "triangle"  "triangle"  "light"    
[61255] "cigar"     "circle"    "light"     "light"     "light"     "fireball" 
[61261] "light"     "other"     "fireball"  "cigar"     NA          "circle"   
[61267] "sphere"    "oval"      "formation" "disk"      "unknown"   "disk"     
[61273] "formation" "disk"      NA          "other"     "sphere"    "disk"     
[61279] "oval"      "circle"    "disk"      "cigar"     "other"     "oval"     
[61285] "sphere"    "cigar"     "unknown"   "unknown"   "disk"      "cigar"    
[61291] "other"     "disk"      "other"     "unknown"   "disk"      "circle"   
[61297] "disk"      "other"     "oval"      "oval"      "disk"      "other"    
[61303] "other"     "other"     "disk"      "disk"      "disk"      "circle"   
[61309] "light"     "unknown"   "disk"      "other"     "oval"      "light"    
[61315] "sphere"    "light"     "sphere"    "other"     "fireball"  "unknown"  
[61321] "other"     "cigar"     "triangle"  "other"     "triangle"  "light"    
[61327] "disk"      "circle"    "disk"      "formation" "oval"      "unknown"  
[61333] "disk"      NA          "disk"      "disk"      "disk"      "circle"   
[61339] "oval"      "disk"      "light"     "circle"    "other"     "oval"     
[61345] "circle"    "oval"      "other"     "fireball"  "disk"      "oval"     
[61351] "light"     "disk"      "light"     "sphere"    "disk"      "other"    
[61357] "unknown"   "circle"    "light"     "other"     "disk"      "unknown"  
[61363] "light"     "oval"      "fireball"  "circle"    "light"     "light"    
[61369] "circle"    "light"     "cigar"     "other"     "triangle"  "oval"     
[61375] NA          "fireball"  "cylinder"  "circle"    "oval"      NA         
[61381] "fireball"  "cigar"     "formation" "disk"      "light"     "triangle" 
[61387] "triangle"  "sphere"    "disk"      "disk"      "triangle"  "circle"   
[61393] "light"     "disk"      "disk"      "disk"      "light"     "other"    
[61399] "triangle"  "disk"      "triangle"  "circle"    "light"     "chevron"  
[61405] "triangle"  "sphere"    "unknown"   "triangle"  "light"     "disk"     
[61411] "sphere"    "triangle"  "oval"      "oval"      "rectangle" "disk"     
[61417] "circle"    "light"     "other"     "rectangle" "disk"      "cigar"    
[61423] "light"     "disk"      "disk"      "light"     "unknown"   "sphere"   
[61429] "triangle"  "triangle"  "oval"      "circle"    "unknown"   "circle"   
[61435] NA          "light"     "unknown"   "sphere"    "light"     "cigar"    
[61441] "disk"      "cylinder"  "disk"      "unknown"   "light"     "formation"
[61447] "diamond"   "disk"      "flash"     "unknown"   "sphere"    "triangle" 
[61453] "triangle"  "changing"  "unknown"   "rectangle" "egg"       "disk"     
[61459] "cylinder"  "disk"      "circle"    "other"     "triangle"  "cylinder" 
[61465] "sphere"    "other"     "unknown"   "circle"    "unknown"   "sphere"   
[61471] "light"     "triangle"  "triangle"  "triangle"  "light"     "rectangle"
[61477] "sphere"    "triangle"  "other"     "circle"    "diamond"   "disk"     
[61483] "chevron"   "triangle"  "triangle"  "light"     "triangle"  "unknown"  
[61489] "triangle"  "oval"      "light"     "other"     "fireball"  "unknown"  
[61495] "triangle"  "oval"      "cigar"     "fireball"  "light"     "sphere"   
[61501] "light"     "light"     "triangle"  "light"     "disk"      "light"    
[61507] "circle"    "disk"      "light"     "triangle"  "fireball"  "cigar"    
[61513] "triangle"  "light"     "circle"    "triangle"  "triangle"  "light"    
[61519] "rectangle" "sphere"    "circle"    "disk"      "diamond"   "triangle" 
[61525] "triangle"  "light"     "light"     "other"     "light"     "circle"   
[61531] "triangle"  "other"     "triangle"  "light"     "cone"      "unknown"  
[61537] "light"     "unknown"   "oval"      "circle"    "sphere"    "other"    
[61543] "sphere"    "triangle"  NA          "light"     "circle"    "light"    
[61549] "circle"    "light"     NA          "formation" "oval"      "egg"      
[61555] "unknown"   "triangle"  "diamond"   "disk"      "circle"    "triangle" 
[61561] "light"     "triangle"  "light"     NA          "circle"    "circle"   
[61567] "fireball"  "cigar"     "disk"      "disk"      "other"     "sphere"   
[61573] "disk"      "sphere"    NA          "formation" "sphere"    "unknown"  
[61579] "circle"    "light"     "triangle"  "cigar"     "circle"    "diamond"  
[61585] "unknown"   "sphere"    "cigar"     "light"     "sphere"    "flash"    
[61591] "unknown"   "sphere"    "other"     "egg"       "light"     "triangle" 
[61597] "light"     "cigar"     "cigar"     "cylinder"  "light"     "other"    
[61603] "fireball"  "triangle"  "light"     "cigar"     "light"     "sphere"   
[61609] "light"     "triangle"  "light"     "cigar"     "cigar"     "triangle" 
[61615] "light"     NA          "oval"      "light"     "cross"     "oval"     
[61621] "circle"    "triangle"  "disk"      "formation" "rectangle" "fireball" 
[61627] "oval"      "unknown"   "triangle"  "fireball"  "fireball"  "unknown"  
[61633] "disk"      "rectangle" "light"     "formation" "circle"    "fireball" 
[61639] NA          "sphere"    "other"     "cigar"     "oval"      "circle"   
[61645] "oval"      "rectangle" "cylinder"  "disk"      "sphere"    "formation"
[61651] "other"     "light"     "egg"       "circle"    "light"     "oval"     
[61657] "disk"      "changing"  "changing"  "circle"    "triangle"  "unknown"  
[61663] "other"     "light"     "light"     "oval"      "light"     "teardrop" 
[61669] "light"     "disk"      "sphere"    "fireball"  "changing"  "other"    
[61675] "cigar"     "light"     "light"     "triangle"  "cigar"     "sphere"   
[61681] "other"     "rectangle" "triangle"  "light"     "unknown"   "unknown"  
[61687] "light"     "triangle"  "triangle"  "circle"    "light"     "diamond"  
[61693] "other"     "sphere"    "unknown"   "disk"      "light"     "light"    
[61699] "circle"    "light"     "triangle"  "circle"    "disk"      "disk"     
[61705] "disk"      "sphere"    "other"     "disk"      "sphere"    "light"    
[61711] "circle"    "other"     "changing"  "light"     "circle"    NA         
[61717] "disk"      "triangle"  "oval"      "light"     "triangle"  "triangle" 
[61723] "circle"    "unknown"   "chevron"   "sphere"    "oval"      "circle"   
[61729] "egg"       "chevron"   NA          "light"     "circle"    "disk"     
[61735] "formation" "unknown"   "fireball"  "light"     "disk"      "fireball" 
[61741] "fireball"  "unknown"   "triangle"  "unknown"   "oval"      "changing" 
[61747] "triangle"  "sphere"    "light"     "other"     "unknown"   "fireball" 
[61753] "light"     "light"     "circle"    "sphere"    "light"     "light"    
[61759] "light"     "light"     "unknown"   "cylinder"  "changing"  "fireball" 
[61765] "unknown"   "other"     "circle"    "fireball"  "light"     "fireball" 
[61771] "triangle"  "fireball"  "teardrop"  "other"     "triangle"  "fireball" 
[61777] "circle"    "fireball"  "fireball"  "triangle"  "fireball"  "unknown"  
[61783] "light"     "fireball"  "light"     "circle"    "triangle"  "rectangle"
[61789] "sphere"    "unknown"   "circle"    "triangle"  "fireball"  "fireball" 
[61795] "changing"  "sphere"    "chevron"   "fireball"  "cross"     "oval"     
[61801] "triangle"  "light"     "fireball"  "circle"    "sphere"    "triangle" 
[61807] "fireball"  "triangle"  "unknown"   "circle"    "fireball"  "sphere"   
[61813] "light"     "circle"    "light"     "fireball"  "flash"     "triangle" 
[61819] "circle"    "fireball"  "fireball"  "light"     "light"     "other"    
[61825] "disk"      "light"     "cone"      "fireball"  "light"     "other"    
[61831] "fireball"  "circle"    "sphere"    "light"     "unknown"   "circle"   
[61837] "circle"    "light"     "oval"      "fireball"  "light"     "oval"     
[61843] "fireball"  "fireball"  "light"     "other"     "other"     "cigar"    
[61849] "rectangle" "fireball"  "circle"    "circle"    "disk"      NA         
[61855] "triangle"  "light"     "other"     "sphere"    "fireball"  "other"    
[61861] "circle"    "circle"    "fireball"  "cigar"     "light"     "light"    
[61867] "chevron"   "light"     "circle"    "fireball"  "unknown"   "light"    
[61873] "changing"  "unknown"   "circle"    "circle"    "circle"    "cigar"    
[61879] "unknown"   "cigar"     "disk"      "cigar"     "oval"      "cigar"    
[61885] "triangle"  "cigar"     "disk"      "light"     "light"     "disk"     
[61891] "sphere"    "sphere"    "unknown"   "diamond"   "rectangle" "circle"   
[61897] "circle"    "formation" "circle"    "unknown"   "changing"  "disk"     
[61903] "light"     "light"     "triangle"  "disk"      "unknown"   "light"    
[61909] "light"     "other"     "disk"      "fireball"  "formation" "light"    
[61915] "other"     "circle"    "circle"    "flash"     "unknown"   "light"    
[61921] "light"     "other"     "egg"       "sphere"    "disk"      "circle"   
[61927] "cylinder"  "disk"      "light"     "unknown"   "fireball"  "circle"   
[61933] "diamond"   "diamond"   "fireball"  "circle"    "light"     "light"    
[61939] "light"     "cigar"     "egg"       "light"     "disk"      "sphere"   
[61945] "sphere"    "light"     "fireball"  "flash"     "circle"    "oval"     
[61951] "light"     "rectangle" "sphere"    "disk"      "light"     "triangle" 
[61957] "cigar"     "circle"    "circle"    "unknown"   "oval"      "changing" 
[61963] "triangle"  "light"     "cigar"     "light"     "sphere"    "oval"     
[61969] "oval"      "cigar"     "oval"      "disk"      "unknown"   "light"    
[61975] "oval"      NA          "disk"      "light"     "triangle"  "egg"      
[61981] "disk"      "cylinder"  "other"     "sphere"    "sphere"    "circle"   
[61987] NA          "oval"      "triangle"  "oval"      "light"     "changing" 
[61993] "other"     "formation" "disk"      "other"     "light"     "diamond"  
[61999] "changing"  "formation" "cigar"     "disk"      "changing"  "unknown"  
[62005] "changing"  "circle"    "unknown"   "sphere"    "circle"    "unknown"  
[62011] "other"     "disk"      "disk"      "triangle"  "changing"  "light"    
[62017] "light"     "light"     "circle"    "disk"      "cylinder"  "circle"   
[62023] "fireball"  "light"     "light"     "light"     "sphere"    NA         
[62029] "flash"     "triangle"  "circle"    "fireball"  "light"     "unknown"  
[62035] "circle"    "light"     "circle"    "triangle"  "unknown"   "other"    
[62041] "formation" "disk"      "rectangle" "light"     "oval"      "circle"   
[62047] "oval"      "light"     "sphere"    "triangle"  "triangle"  "light"    
[62053] "sphere"    "unknown"   "light"     "light"     "other"     "unknown"  
[62059] "fireball"  "cylinder"  "circle"    "triangle"  "unknown"   "fireball" 
[62065] "oval"      "sphere"    "unknown"   "circle"    "cigar"     "diamond"  
[62071] "light"     "light"     "circle"    "light"     "other"     "changing" 
[62077] "other"     "light"     "sphere"    "light"     "disk"      "light"    
[62083] "light"     "light"     "light"     "triangle"  "sphere"    "light"    
[62089] "cigar"     "disk"      "cigar"     "unknown"   "disk"      "fireball" 
[62095] "diamond"   "sphere"    "flash"     "circle"    "triangle"  "cigar"    
[62101] "fireball"  "fireball"  "other"     "disk"      "oval"      "sphere"   
[62107] "cylinder"  "fireball"  "diamond"   "sphere"    "light"     "oval"     
[62113] "light"     "light"     "oval"      "light"     "circle"    "circle"   
[62119] "circle"    "fireball"  "other"     "fireball"  "disk"      "circle"   
[62125] "cross"     "teardrop"  "cylinder"  "circle"    "cylinder"  "light"    
[62131] "sphere"    "flash"     "circle"    "unknown"   "light"     "circle"   
[62137] "other"     "oval"      "triangle"  "light"     "light"     "other"    
[62143] "sphere"    "triangle"  "unknown"   "fireball"  "oval"      "light"    
[62149] "disk"      "circle"    "other"     "disk"      "egg"       "disk"     
[62155] "cylinder"  "chevron"   "disk"      "diamond"   "fireball"  "triangle" 
[62161] "sphere"    "triangle"  NA          "fireball"  "sphere"    "oval"     
[62167] "unknown"   "changing"  "sphere"    "unknown"   "disk"      "triangle" 
[62173] "sphere"    "triangle"  "fireball"  "cigar"     "circle"    "other"    
[62179] "cigar"     "circle"    "diamond"   "circle"    "light"     "fireball" 
[62185] "circle"    "circle"    "cigar"     "fireball"  "light"     "disk"     
[62191] "fireball"  "changing"  "other"     "changing"  "circle"    "triangle" 
[62197] "cigar"     "triangle"  "sphere"    "circle"    "other"     "light"    
[62203] "sphere"    "other"     "sphere"    "fireball"  "fireball"  "unknown"  
[62209] "chevron"   "other"     "cigar"     "changing"  "triangle"  "disk"     
[62215] "sphere"    "oval"      "cigar"     NA          "formation" "light"    
[62221] "unknown"   "light"     "rectangle" "light"     "unknown"   "cigar"    
[62227] "unknown"   "light"     "flash"     "changing"  "changing"  "light"    
[62233] "formation" "sphere"    "sphere"    "light"     "unknown"   "circle"   
[62239] "light"     "formation" "disk"      "triangle"  "circle"    "oval"     
[62245] "changing"  "sphere"    "light"     "light"     "light"     "other"    
[62251] "unknown"   "cigar"     "light"     "fireball"  "light"     "cylinder" 
[62257] "light"     "unknown"   "triangle"  "other"     "light"     "formation"
[62263] "unknown"   "circle"    "disk"      "teardrop"  "fireball"  "changing" 
[62269] "cigar"     "circle"    "light"     "rectangle" "light"     "sphere"   
[62275] "triangle"  "triangle"  "light"     "unknown"   "formation" "flash"    
[62281] "circle"    "light"     "light"     "formation" "triangle"  "other"    
[62287] "circle"    "unknown"   "sphere"    "triangle"  "cylinder"  "light"    
[62293] "oval"      "light"     "triangle"  "light"     "light"     "triangle" 
[62299] "diamond"   "light"     "light"     "light"     "unknown"   "unknown"  
[62305] "light"     "oval"      "oval"      "changing"  "disk"      "cylinder" 
[62311] "other"     "cigar"     "cylinder"  "sphere"    "unknown"   "fireball" 
[62317] "light"     NA          "unknown"   "teardrop"  "light"     "unknown"  
[62323] NA          "light"     "oval"      "diamond"   "cigar"     "other"    
[62329] "triangle"  "cigar"     "oval"      "light"     "other"     "unknown"  
[62335] "other"     "light"     "disk"      "other"     "changing"  "cylinder" 
[62341] "other"     "oval"      "light"     "circle"    "fireball"  "light"    
[62347] "formation" "unknown"   "changing"  "fireball"  "circle"    "disk"     
[62353] "light"     "cylinder"  "changing"  NA          "cylinder"  "fireball" 
[62359] "fireball"  "light"     "triangle"  "other"     "light"     "fireball" 
[62365] "light"     "light"     "fireball"  "fireball"  "unknown"   "changing" 
[62371] "triangle"  "light"     "changing"  "circle"    "circle"    "circle"   
[62377] "cone"      "sphere"    "circle"    "triangle"  "fireball"  "fireball" 
[62383] "light"     "light"     "light"     "sphere"    "light"     "formation"
[62389] "other"     "light"     "fireball"  "fireball"  "fireball"  "fireball" 
[62395] "oval"      "light"     "light"     "other"     "circle"    "rectangle"
[62401] "light"     "light"     "teardrop"  "sphere"    "other"     "triangle" 
[62407] "light"     "light"     "sphere"    "light"     "cone"      "circle"   
[62413] "circle"    "formation" "light"     NA          "fireball"  "formation"
[62419] "fireball"  "light"     "fireball"  "unknown"   "light"     "circle"   
[62425] "light"     "other"     "light"     "fireball"  "fireball"  "light"    
[62431] "light"     "formation" "cigar"     "fireball"  "cylinder"  "light"    
[62437] "formation" "light"     "formation" "light"     "light"     "circle"   
[62443] "rectangle" "oval"      "triangle"  "sphere"    "sphere"    "triangle" 
[62449] "fireball"  "cigar"     "circle"    "disk"      "unknown"   "oval"     
[62455] "circle"    "cigar"     "unknown"   "other"     "oval"      "triangle" 
[62461] "unknown"   "cigar"     "triangle"  "unknown"   "formation" "disk"     
[62467] "cigar"     "light"     "triangle"  "unknown"   "circle"    "light"    
[62473] "other"     "oval"      "unknown"   "circle"    "sphere"    "disk"     
[62479] "light"     NA          "sphere"    "light"     "oval"      "circle"   
[62485] "other"     "sphere"    "egg"       "fireball"  NA          "unknown"  
[62491] "unknown"   "triangle"  "light"     "light"     "disk"      "light"    
[62497] "other"     "flash"     "disk"      "light"     "fireball"  "flash"    
[62503] "circle"    "unknown"   "other"     "disk"      "cigar"     "triangle" 
[62509] "unknown"   "egg"       "unknown"   "light"     "light"     "chevron"  
[62515] "fireball"  "light"     "cigar"     "teardrop"  "light"     "light"    
[62521] "light"     "fireball"  "light"     "light"     "chevron"   "triangle" 
[62527] "circle"    "chevron"   "circle"    "other"     "light"     "light"    
[62533] "unknown"   "oval"      "disk"      "cigar"     "changing"  "circle"   
[62539] "circle"    "circle"    "light"     "chevron"   "triangle"  "disk"     
[62545] "oval"      "sphere"    "light"     "light"     "other"     "changing" 
[62551] "light"     "diamond"   "light"     "triangle"  "light"     "other"    
[62557] "disk"      "other"     "light"     "light"     "light"     "light"    
[62563] "light"     "oval"      "cross"     "light"     "disk"      "light"    
[62569] "circle"    "circle"    "formation" "sphere"    "fireball"  "sphere"   
[62575] "light"     "light"     "chevron"   "triangle"  "other"     "other"    
[62581] "unknown"   "circle"    "light"     "unknown"   "disk"      "disk"     
[62587] "oval"      "light"     "circle"    "flash"     "triangle"  "fireball" 
[62593] "light"     "formation" "circle"    "light"     "light"     "formation"
[62599] "light"     "light"     "light"     "triangle"  "sphere"    "sphere"   
[62605] "oval"      "light"     "unknown"   "oval"      "circle"    "circle"   
[62611] "flash"     "circle"    "triangle"  "circle"    "other"     "light"    
[62617] "other"     "light"     "oval"      "other"     "other"     "disk"     
[62623] "light"     "sphere"    "triangle"  "oval"      "light"     "other"    
[62629] "sphere"    "light"     "light"     "other"     "unknown"   "other"    
[62635] "unknown"   "formation" "unknown"   "formation" "unknown"   "disk"     
[62641] "light"     "other"     "cylinder"  "disk"      "diamond"   "teardrop" 
[62647] "oval"      "other"     "other"     "light"     "cigar"     "fireball" 
[62653] "light"     "light"     "formation" "flash"     "light"     "triangle" 
[62659] "disk"      "oval"      "light"     "sphere"    "circle"    "circle"   
[62665] "fireball"  "light"     "light"     "other"     "triangle"  "light"    
[62671] "other"     "circle"    "fireball"  "circle"    "circle"    "circle"   
[62677] "oval"      "oval"      "light"     "fireball"  "fireball"  "oval"     
[62683] "formation" "light"     "fireball"  "fireball"  "circle"    "light"    
[62689] "light"     "disk"      "circle"    "unknown"   "cigar"     "circle"   
[62695] "circle"    "light"     "light"     "light"     "disk"      "fireball" 
[62701] "oval"      "oval"      "fireball"  "sphere"    "sphere"    "other"    
[62707] "light"     "disk"      "unknown"   "cone"      "sphere"    "other"    
[62713] "circle"    "sphere"    "rectangle" "formation" "circle"    "circle"   
[62719] "light"     "formation" "fireball"  "sphere"    "circle"    "other"    
[62725] "fireball"  "light"     "unknown"   "light"     "triangle"  "triangle" 
[62731] "light"     "fireball"  "other"     "light"     "unknown"   "oval"     
[62737] "disk"      "rectangle" "cylinder"  "sphere"    "disk"      "formation"
[62743] "cylinder"  "disk"      "disk"      "cylinder"  "chevron"   "light"    
[62749] "unknown"   "sphere"    "formation" "sphere"    "disk"      "sphere"   
[62755] "disk"      "disk"      "other"     "circle"    "other"     "other"    
[62761] "cylinder"  "disk"      "cigar"     "chevron"   "disk"      "light"    
[62767] "circle"    "disk"      "oval"      "light"     "light"     "disk"     
[62773] "disk"      "disk"      "light"     "diamond"   "cigar"     "disk"     
[62779] "light"     NA          "disk"      "light"     "disk"      "unknown"  
[62785] "cigar"     "egg"       "circle"    "unknown"   "sphere"    "diamond"  
[62791] "unknown"   "cylinder"  "cigar"     "unknown"   "egg"       "changing" 
[62797] "other"     "circle"    "oval"      "disk"      "cylinder"  "disk"     
[62803] "disk"      "disk"      "circle"    "circle"    "light"     "light"    
[62809] "sphere"    "circle"    "disk"      "formation" "other"     "fireball" 
[62815] "circle"    "triangle"  "circle"    "rectangle" "oval"      "fireball" 
[62821] "egg"       "cigar"     "fireball"  "light"     "light"     "sphere"   
[62827] "disk"      "disk"      "other"     "oval"      "triangle"  "light"    
[62833] "unknown"   "triangle"  "circle"    "disk"      "chevron"   "sphere"   
[62839] "disk"      "formation" "light"     "diamond"   "changing"  "light"    
[62845] "light"     "circle"    "cigar"     "triangle"  "other"     "light"    
[62851] "other"     "circle"    "fireball"  "flash"     "unknown"   "unknown"  
[62857] "disk"      "sphere"    "disk"      "disk"      "disk"      "light"    
[62863] "other"     "other"     "disk"      "oval"      "unknown"   "other"    
[62869] "disk"      "disk"      "light"     "fireball"  "cigar"     "cigar"    
[62875] "oval"      "light"     "formation" "circle"    "other"     "cigar"    
[62881] "triangle"  "cigar"     "light"     "triangle"  "light"     "light"    
[62887] "oval"      "disk"      "cylinder"  "sphere"    "other"     "cone"     
[62893] "triangle"  "oval"      "circle"    "triangle"  "unknown"   "egg"      
[62899] "triangle"  "fireball"  "cigar"     "other"     "unknown"   "disk"     
[62905] "light"     "sphere"    "light"     "triangle"  "unknown"   "triangle" 
[62911] "disk"      "triangle"  "circle"    "sphere"    "disk"      "sphere"   
[62917] "teardrop"  "disk"      "cigar"     "triangle"  "disk"      "circle"   
[62923] "disk"      "disk"      "disk"      "unknown"   "triangle"  "light"    
[62929] "disk"      "formation" "triangle"  "rectangle" "other"     "light"    
[62935] "rectangle" "light"     "unknown"   "sphere"    "fireball"  "cylinder" 
[62941] "disk"      "sphere"    "cigar"     "other"     "circle"    "light"    
[62947] "disk"      "disk"      "circle"    "light"     "light"     "oval"     
[62953] "light"     "circle"    "light"     "unknown"   "triangle"  "light"    
[62959] NA          "triangle"  "light"     "sphere"    "sphere"    "unknown"  
[62965] "oval"      "chevron"   "circle"    "disk"      "circle"    "rectangle"
[62971] "fireball"  "light"     "disk"      "light"     "disk"      "light"    
[62977] "light"     "disk"      "cigar"     "sphere"    "disk"      "sphere"   
[62983] "disk"      "oval"      "circle"    "circle"    "disk"      "disk"     
[62989] "light"     "cigar"     "light"     "triangle"  "cigar"     "other"    
[62995] "light"     "unknown"   "cigar"     "other"     "cigar"     "sphere"   
[63001] "triangle"  "disk"      "chevron"   "triangle"  "other"     "light"    
[63007] "disk"      "triangle"  "oval"      "light"     "disk"      "light"    
[63013] "oval"      "light"     "disk"      "other"     "disk"      "circle"   
[63019] "light"     "circle"    "triangle"  "formation" "disk"      "oval"     
[63025] "triangle"  "other"     "fireball"  "disk"      "unknown"   "triangle" 
[63031] "changing"  "sphere"    "sphere"    "other"     "rectangle" "disk"     
[63037] "rectangle" "cylinder"  "other"     "fireball"  "disk"      "sphere"   
[63043] "other"     "disk"      "changing"  "unknown"   "disk"      "triangle" 
[63049] "triangle"  "oval"      "changing"  "disk"      "rectangle" "chevron"  
[63055] "unknown"   "light"     "other"     "other"     "disk"      "other"    
[63061] "light"     "light"     "sphere"    "flash"     "other"     "circle"   
[63067] "chevron"   "triangle"  "disk"      "oval"      "sphere"    NA         
[63073] NA          "other"     "circle"    "cross"     "triangle"  "triangle" 
[63079] "sphere"    "triangle"  "fireball"  "circle"    "other"     "light"    
[63085] "light"     "flash"     "disk"      "sphere"    "changing"  "fireball" 
[63091] "chevron"   "disk"      "unknown"   "rectangle" "light"     "unknown"  
[63097] "unknown"   "disk"      "disk"      "light"     "triangle"  "triangle" 
[63103] "triangle"  "egg"       "light"     "formation" "other"     NA         
[63109] "chevron"   "light"     "unknown"   "sphere"    "fireball"  "light"    
[63115] "triangle"  "formation" "circle"    "other"     "light"     "triangle" 
[63121] "triangle"  "sphere"    "fireball"  "sphere"    "triangle"  "circle"   
[63127] NA          "cigar"     "sphere"    "triangle"  "light"     "egg"      
[63133] "light"     "other"     "other"     "light"     "sphere"    "fireball" 
[63139] "cone"      "light"     "sphere"    "circle"    NA          "triangle" 
[63145] NA          NA          "disk"      "light"     "egg"       "circle"   
[63151] "cigar"     "light"     "oval"      "disk"      "other"     "fireball" 
[63157] "sphere"    "unknown"   "flash"     "light"     "light"     "circle"   
[63163] "light"     "triangle"  "light"     "other"     "rectangle" "other"    
[63169] "triangle"  "changing"  "other"     "other"     "circle"    "unknown"  
[63175] "triangle"  "other"     "unknown"   "circle"    "triangle"  "disk"     
[63181] "sphere"    "triangle"  "fireball"  "light"     "sphere"    "sphere"   
[63187] "disk"      "disk"      "sphere"    "other"     "light"     "other"    
[63193] "triangle"  "circle"    "sphere"    "fireball"  "triangle"  "triangle" 
[63199] "triangle"  "light"     "fireball"  "light"     "light"     "sphere"   
[63205] "formation" "light"     "triangle"  "oval"      "disk"      "other"    
[63211] "fireball"  "triangle"  "triangle"  "light"     "other"     "other"    
[63217] "flash"     "egg"       "oval"      "unknown"   "disk"      "oval"     
[63223] "circle"    "circle"    "light"     "triangle"  "diamond"   "formation"
[63229] "flash"     "circle"    "light"     "other"     "formation" "light"    
[63235] "light"     "other"     "unknown"   "sphere"    "disk"      "sphere"   
[63241] "oval"      "sphere"    "egg"       "disk"      "fireball"  "changing" 
[63247] "light"     "light"     "fireball"  "sphere"    "teardrop"  "triangle" 
[63253] "fireball"  "unknown"   "light"     "unknown"   "fireball"  "cigar"    
[63259] "oval"      "formation" "light"     "circle"    "disk"      NA         
[63265] "sphere"    "sphere"    "circle"    "triangle"  "cylinder"  "light"    
[63271] "sphere"    "disk"      "cigar"     "triangle"  "other"     "light"    
[63277] "circle"    "other"     "triangle"  "fireball"  "sphere"    "unknown"  
[63283] "oval"      "triangle"  "changing"  "triangle"  "formation" "other"    
[63289] "circle"    "formation" NA          "formation" "formation" "light"    
[63295] "other"     "light"     "formation" "light"     "circle"    "oval"     
[63301] "formation" "formation" "light"     "formation" "light"     "light"    
[63307] NA          "unknown"   "circle"    "other"     "oval"      "fireball" 
[63313] "unknown"   "cross"     "light"     "egg"       "oval"      "light"    
[63319] "chevron"   "light"     "cone"      "other"     "light"     "circle"   
[63325] "disk"      "other"     "flash"     "unknown"   "cylinder"  "unknown"  
[63331] "light"     "cross"     "triangle"  "rectangle" "triangle"  "unknown"  
[63337] "disk"      "light"     "light"     "unknown"   "light"     "light"    
[63343] NA          "unknown"   "light"     "cylinder"  "light"     "light"    
[63349] "circle"    "sphere"    "disk"      "disk"      "triangle"  "oval"     
[63355] "unknown"   "triangle"  "fireball"  "oval"      "cross"     "fireball" 
[63361] "circle"    "unknown"   "circle"    "circle"    "cigar"     "oval"     
[63367] "formation" "unknown"   "light"     "circle"    "light"     "formation"
[63373] "other"     "light"     "flash"     "light"     "sphere"    "cylinder" 
[63379] "cylinder"  "fireball"  "light"     "disk"      "light"     "light"    
[63385] "formation" "disk"      "disk"      "sphere"    "fireball"  "cylinder" 
[63391] "cigar"     "oval"      "light"     "disk"      "triangle"  "other"    
[63397] "triangle"  "formation" "light"     "disk"      "changing"  "unknown"  
[63403] "teardrop"  "sphere"    "light"     "flash"     "disk"      "disk"     
[63409] "disk"      "triangle"  "fireball"  "triangle"  "unknown"   "other"    
[63415] "oval"      "circle"    "light"     "other"     "cylinder"  "sphere"   
[63421] "other"     "circle"    "light"     "sphere"    "oval"      "other"    
[63427] "light"     "circle"    "unknown"   "sphere"    "diamond"   "formation"
[63433] "disk"      "diamond"   "unknown"   "disk"      "sphere"    "unknown"  
[63439] "circle"    "triangle"  "light"     "sphere"    "sphere"    "circle"   
[63445] "circle"    "rectangle" "rectangle" "circle"    "cylinder"  "diamond"  
[63451] "oval"      "disk"      "cylinder"  "teardrop"  "unknown"   "other"    
[63457] "light"     "changing"  "unknown"   "other"     "light"     "light"    
[63463] "light"     "triangle"  "light"     "triangle"  "rectangle" "triangle" 
[63469] NA          "fireball"  NA          "light"     "disk"      "sphere"   
[63475] "disk"      "circle"    "light"     "light"     "cigar"     "triangle" 
[63481] "disk"      "oval"      "disk"      "formation" "oval"      "circle"   
[63487] "light"     "fireball"  "disk"      "light"     "other"     "light"    
[63493] "triangle"  "light"     "circle"    "light"     "light"     "light"    
[63499] "light"     "unknown"   "chevron"   "fireball"  "triangle"  "fireball" 
[63505] "triangle"  "light"     "changing"  "unknown"   "light"     "sphere"   
[63511] NA          "egg"       "cigar"     "rectangle" "triangle"  "other"    
[63517] NA          "triangle"  "light"     "oval"      "other"     "sphere"   
[63523] "triangle"  "sphere"    "light"     "light"     "sphere"    "unknown"  
[63529] "changing"  "circle"    "other"     "cigar"     "light"     "triangle" 
[63535] "egg"       "fireball"  "flash"     "light"     "cigar"     "triangle" 
[63541] "disk"      "cigar"     "fireball"  "oval"      "oval"      "sphere"   
[63547] "oval"      "fireball"  "unknown"   "formation" "light"     NA         
[63553] "circle"    "sphere"    "triangle"  "triangle"  "sphere"    "sphere"   
[63559] "circle"    "circle"    "unknown"   "light"     "circle"    "sphere"   
[63565] "other"     "sphere"    "cylinder"  "rectangle" "fireball"  "fireball" 
[63571] "cylinder"  "unknown"   "flash"     "light"     "light"     "sphere"   
[63577] "unknown"   "light"     "disk"      "triangle"  "triangle"  "rectangle"
[63583] "other"     "triangle"  "disk"      "circle"    "light"     "triangle" 
[63589] "light"     "light"     "chevron"   "flash"     "triangle"  "unknown"  
[63595] "sphere"    "light"     "cigar"     "triangle"  "circle"    "circle"   
[63601] "oval"      "oval"      "triangle"  "oval"      "sphere"    "triangle" 
[63607] "cigar"     "disk"      "disk"      "fireball"  "other"     "oval"     
[63613] "unknown"   "cigar"     "fireball"  "fireball"  "formation" "fireball" 
[63619] "other"     "fireball"  "light"     "disk"      "triangle"  "light"    
[63625] "triangle"  "oval"      "light"     "circle"    "light"     "oval"     
[63631] "triangle"  "egg"       "light"     NA          "sphere"    "triangle" 
[63637] "sphere"    "triangle"  "circle"    "triangle"  "sphere"    "circle"   
[63643] "sphere"    "light"     "triangle"  "sphere"    NA          "fireball" 
[63649] "unknown"   "sphere"    "light"     "circle"    "circle"    "light"    
[63655] "sphere"    NA          "circle"    "other"     "circle"    "oval"     
[63661] "rectangle" "fireball"  "light"     "other"     "disk"      "unknown"  
[63667] "sphere"    "disk"      "unknown"   "light"     "fireball"  "cross"    
[63673] "cigar"     "disk"      "triangle"  "disk"      "cylinder"  "disk"     
[63679] "changing"  "light"     "other"     "rectangle" "other"     "sphere"   
[63685] "egg"       NA          NA          NA          "triangle"  "oval"     
[63691] "unknown"   "light"     "triangle"  "light"     "light"     "oval"     
[63697] "other"     "sphere"    "sphere"    "sphere"    "rectangle" "other"    
[63703] "triangle"  "disk"      "triangle"  "light"     "sphere"    "light"    
[63709] "light"     "circle"    "light"     "sphere"    "changing"  "disk"     
[63715] "unknown"   "light"     NA          "circle"    "oval"      "circle"   
[63721] "oval"      "light"     "unknown"   "light"     "light"     "diamond"  
[63727] NA          "fireball"  "other"     "unknown"   "other"     "sphere"   
[63733] "unknown"   NA          "teardrop"  "triangle"  "light"     "light"    
[63739] "sphere"    "unknown"   "unknown"   "diamond"   "triangle"  "cylinder" 
[63745] NA          "light"     "changing"  "fireball"  "light"     "unknown"  
[63751] "light"     NA          "disk"      "circle"    "changing"  "changing" 
[63757] "triangle"  "chevron"   "chevron"   "egg"       "fireball"  "light"    
[63763] "sphere"    "disk"      "oval"      "light"     "light"     "oval"     
[63769] "light"     "flash"     "light"     "sphere"    "chevron"   "disk"     
[63775] "light"     "flash"     "light"     "rectangle" "circle"    "circle"   
[63781] "sphere"    "changing"  "disk"      "changing"  "cigar"     "formation"
[63787] "light"     "triangle"  "light"     "triangle"  "circle"    "light"    
[63793] "triangle"  "light"     "unknown"   "light"     "diamond"   "light"    
[63799] "circle"    "rectangle" "changing"  "teardrop"  "unknown"   "unknown"  
[63805] "triangle"  "circle"    "light"     "triangle"  "other"     "circle"   
[63811] "unknown"   "triangle"  "disk"      "other"     "light"     "unknown"  
[63817] "changing"  "other"     "disk"      "light"     "unknown"   "changing" 
[63823] "light"     "light"     "light"     "light"     "diamond"   "unknown"  
[63829] "unknown"   "other"     "light"     "disk"      "unknown"   "light"    
[63835] "circle"    "triangle"  "fireball"  "teardrop"  "triangle"  "triangle" 
[63841] "light"     "circle"    "other"     "oval"      "cigar"     "disk"     
[63847] "circle"    "cylinder"  "light"     "light"     "changing"  "light"    
[63853] "disk"      "sphere"    "changing"  "disk"      "fireball"  "fireball" 
[63859] "other"     "fireball"  "diamond"   "diamond"   "sphere"    "circle"   
[63865] "flash"     "rectangle" NA          "fireball"  "sphere"    "circle"   
[63871] "fireball"  "other"     "fireball"  "fireball"  "light"     NA         
[63877] "unknown"   "circle"    "sphere"    "circle"    "disk"      "light"    
[63883] "cigar"     "triangle"  "other"     "light"     "light"     "disk"     
[63889] "light"     "unknown"   "fireball"  "fireball"  "teardrop"  "light"    
[63895] "diamond"   "unknown"   "circle"    "triangle"  "circle"    "circle"   
[63901] "sphere"    "light"     "flash"     "light"     "fireball"  "fireball" 
[63907] "unknown"   "changing"  "unknown"   "unknown"   "cone"      "disk"     
[63913] "triangle"  "circle"    "disk"      "disk"      "unknown"   "cigar"    
[63919] "circle"    "formation" "disk"      "triangle"  "triangle"  "changing" 
[63925] "diamond"   "other"     "sphere"    "light"     "triangle"  "light"    
[63931] "other"     "diamond"   "sphere"    "other"     "unknown"   "flash"    
[63937] "light"     "light"     "unknown"   "disk"      "triangle"  "triangle" 
[63943] "sphere"    "triangle"  "sphere"    "light"     "fireball"  "light"    
[63949] "triangle"  "disk"      "fireball"  "sphere"    "light"     "disk"     
[63955] "light"     "fireball"  NA          "egg"       "fireball"  "diamond"  
[63961] "light"     "circle"    "changing"  "fireball"  "disk"      "flash"    
[63967] "cylinder"  "circle"    "other"     "flash"     "cylinder"  "light"    
[63973] "triangle"  "light"     "disk"      "light"     "other"     "other"    
[63979] "unknown"   "circle"    "disk"      "other"     "light"     "oval"     
[63985] "circle"    "sphere"    "disk"      "sphere"    "circle"    "unknown"  
[63991] "fireball"  "other"     "formation" "light"     "other"     "light"    
[63997] "sphere"    "light"     "triangle"  "sphere"    "changing"  "other"    
[64003] "unknown"   "disk"      "circle"    "flash"     "sphere"    "triangle" 
[64009] "rectangle" "fireball"  "circle"    "oval"      "fireball"  "unknown"  
[64015] "other"     "circle"    "unknown"   "sphere"    "light"     "changing" 
[64021] "unknown"   "fireball"  "light"     "light"     "light"     "triangle" 
[64027] "light"     "rectangle" "light"     "egg"       "disk"      "teardrop" 
[64033] "sphere"    "triangle"  "light"     "unknown"   "light"     "light"    
[64039] "triangle"  "light"     "egg"       "flash"     "light"     "triangle" 
[64045] "disk"      "teardrop"  "other"     "rectangle" "sphere"    "disk"     
[64051] "light"     "other"     "unknown"   "light"     "disk"      "unknown"  
[64057] "light"     "changing"  "triangle"  "other"     "light"     "sphere"   
[64063] "light"     "unknown"   "unknown"   "other"     "light"     "triangle" 
[64069] "fireball"  "oval"      "disk"      "light"     "light"     "unknown"  
[64075] "circle"    "sphere"    "changing"  NA          "other"     "circle"   
[64081] "unknown"   "changing"  "light"     "light"     "light"     "light"    
[64087] "fireball"  NA          "sphere"    "unknown"   NA          "circle"   
[64093] "other"     "light"     "light"     "fireball"  "fireball"  "rectangle"
[64099] "disk"      "triangle"  "light"     "unknown"   "fireball"  "formation"
[64105] "sphere"    "light"     "sphere"    "fireball"  "circle"    "sphere"   
[64111] "unknown"   "cylinder"  "formation" "fireball"  "triangle"  "disk"     
[64117] "cigar"     "rectangle" "other"     "circle"    "sphere"    "flash"    
[64123] "fireball"  "disk"      "unknown"   "triangle"  "other"     "sphere"   
[64129] "sphere"    "triangle"  "cigar"     "other"     "light"     "other"    
[64135] "fireball"  "light"     "light"     "cigar"     "cylinder"  "cigar"    
[64141] "sphere"    "unknown"   "circle"    "sphere"    "triangle"  "light"    
[64147] "light"     "circle"    "cigar"     "fireball"  "circle"    "oval"     
[64153] "oval"      "light"     "changing"  "circle"    "other"     "other"    
[64159] "disk"      "light"     "fireball"  "diamond"   "light"     "light"    
[64165] "disk"      "triangle"  "light"     "disk"      "triangle"  "triangle" 
[64171] "triangle"  "light"     "triangle"  "light"     "circle"    "oval"     
[64177] "fireball"  "fireball"  "formation" "light"     "delta"     "oval"     
[64183] "other"     "light"     "cigar"     "cylinder"  "triangle"  "light"    
[64189] "sphere"    "unknown"   "cigar"     "light"     "disk"      "other"    
[64195] "disk"      "egg"       "other"     "sphere"    "cone"      "triangle" 
[64201] "diamond"   "unknown"   "light"     "triangle"  "light"     "formation"
[64207] "other"     "unknown"   NA          "light"     "flash"     "fireball" 
[64213] "circle"    "unknown"   "flash"     "disk"      "changing"  "light"    
[64219] "light"     "triangle"  "circle"    "sphere"    "circle"    "light"    
[64225] "cigar"     "disk"      "circle"    "disk"      "disk"      "sphere"   
[64231] "light"     "oval"      NA          "chevron"   NA          "chevron"  
[64237] "cigar"     "unknown"   "disk"      "light"     "other"     "light"    
[64243] "light"     "light"     "triangle"  "light"     "rectangle" "disk"     
[64249] "triangle"  "sphere"    "rectangle" "light"     "light"     "other"    
[64255] "flash"     "disk"      "light"     "disk"      "unknown"   "flash"    
[64261] "sphere"    "sphere"    "oval"      "light"     "circle"    "sphere"   
[64267] "chevron"   "unknown"   "circle"    "flash"     "disk"      "changing" 
[64273] "disk"      "changing"  "light"     "light"     "triangle"  "triangle" 
[64279] "flash"     "unknown"   "unknown"   "circle"    "light"     "light"    
[64285] "disk"      "fireball"  "sphere"    "circle"    "other"     "disk"     
[64291] "triangle"  "other"     "triangle"  "disk"      "circle"    "light"    
[64297] "other"     "light"     "light"     "other"     "other"     "unknown"  
[64303] "light"     "triangle"  "light"     "light"     "light"     "other"    
[64309] "disk"      "oval"      "circle"    "other"     "light"     "disk"     
[64315] "disk"      "light"     "light"     "fireball"  NA          "light"    
[64321] "light"     "sphere"    "triangle"  "light"     "oval"      "light"    
[64327] "disk"      "circle"    "disk"      "light"     "light"     "triangle" 
[64333] "sphere"    "cylinder"  "formation" "other"     "triangle"  "circle"   
[64339] "formation" "sphere"    "changing"  "changing"  "light"     "light"    
[64345] "chevron"   "other"     "light"     NA          "unknown"   "flash"    
[64351] "circle"    "unknown"   "circle"    "light"     NA          "circle"   
[64357] "other"     "formation" "unknown"   "changing"  "light"     "unknown"  
[64363] "light"     "cone"      "disk"      "fireball"  "light"     NA         
[64369] "oval"      "light"     "light"     "triangle"  "flash"     "unknown"  
[64375] "sphere"    "circle"    "other"     "triangle"  "unknown"   "triangle" 
[64381] "cigar"     "light"     "sphere"    "triangle"  "fireball"  "light"    
[64387] "fireball"  "light"     "light"     "fireball"  "rectangle" "fireball" 
[64393] "fireball"  "fireball"  "light"     "sphere"    "unknown"   "formation"
[64399] "sphere"    "light"     "oval"      "triangle"  "fireball"  "formation"
[64405] "other"     "fireball"  "light"     "circle"    "fireball"  "disk"     
[64411] "light"     "triangle"  "light"     "rectangle" "light"     "light"    
[64417] "circle"    "light"     "fireball"  "other"     NA          "chevron"  
[64423] "unknown"   "fireball"  "oval"      "oval"      "fireball"  "oval"     
[64429] "fireball"  "rectangle" "formation" "formation" "light"     "changing" 
[64435] "formation" "other"     "unknown"   "fireball"  "circle"    "circle"   
[64441] "circle"    "circle"    "fireball"  "unknown"   "rectangle" "triangle" 
[64447] "cross"     "disk"      "disk"      "sphere"    "disk"      "light"    
[64453] "triangle"  "other"     "disk"      "oval"      "triangle"  "formation"
[64459] NA          NA          "oval"      NA          "disk"      "other"    
[64465] NA          "unknown"   "sphere"    "egg"       "diamond"   NA         
[64471] "fireball"  "unknown"   NA          "disk"      "disk"      "oval"     
[64477] "sphere"    "circle"    "cigar"     "circle"    "light"     "other"    
[64483] "circle"    NA          "sphere"    "cigar"     "cylinder"  "light"    
[64489] "light"     "light"     "light"     "disk"      "cylinder"  "changing" 
[64495] "disk"      "fireball"  "fireball"  "circle"    "cone"      "other"    
[64501] "unknown"   "circle"    "unknown"   "other"     "circle"    "cylinder" 
[64507] "oval"      "light"     "unknown"   "light"     "fireball"  "oval"     
[64513] "light"     "light"     "light"     "triangle"  "formation" "light"    
[64519] "unknown"   "other"     "sphere"    "unknown"   "other"     "light"    
[64525] "diamond"   "oval"      "sphere"    "light"     "sphere"    "circle"   
[64531] "other"     "sphere"    "oval"      "other"     "light"     "other"    
[64537] "triangle"  "other"     "sphere"    "other"     "circle"    "disk"     
[64543] "other"     "cylinder"  "disk"      "sphere"    "other"     "cigar"    
[64549] "fireball"  "formation" "changing"  "fireball"  "triangle"  "other"    
[64555] "light"     "fireball"  "triangle"  "fireball"  "other"     "triangle" 
[64561] "circle"    "fireball"  "formation" "triangle"  "oval"      "other"    
[64567] "fireball"  "unknown"   "sphere"    "rectangle" "circle"    "oval"     
[64573] "cigar"     "disk"      NA          "triangle"  "light"     "light"    
[64579] "light"     "light"     "circle"    "light"     "circle"    "circle"   
[64585] "triangle"  "sphere"    "triangle"  "unknown"   "light"     "cigar"    
[64591] "other"     "light"     "cigar"     "light"     "formation" "diamond"  
[64597] "diamond"   "light"     "cigar"     "fireball"  "oval"      "cylinder" 
[64603] "diamond"   "light"     "disk"      "fireball"  "diamond"   "unknown"  
[64609] "circle"    "light"     "light"     "unknown"   "light"     "unknown"  
[64615] "unknown"   "other"     "fireball"  "unknown"   "fireball"  "unknown"  
[64621] "fireball"  "light"     "triangle"  "circle"    "unknown"   "triangle" 
[64627] "sphere"    "teardrop"  "rectangle" "light"     "circle"    "circle"   
[64633] "circle"    "circle"    "light"     "sphere"    "circle"    "light"    
[64639] "light"     "flash"     "fireball"  "light"     "light"     "triangle" 
[64645] "disk"      "egg"       "triangle"  "fireball"  "formation" "cylinder" 
[64651] "light"     "fireball"  "sphere"    "light"     "other"     "light"    
[64657] "formation" "oval"      "disk"      "disk"      "light"     "disk"     
[64663] "light"     "disk"      "light"     "fireball"  "oval"      "circle"   
[64669] "disk"      "cylinder"  "circle"    "fireball"  "circle"    "oval"     
[64675] "disk"      "circle"    "sphere"    "oval"      "disk"      "oval"     
[64681] "triangle"  "light"     "diamond"   "fireball"  "disk"      "circle"   
[64687] "oval"      "triangle"  "cigar"     "disk"      "light"     "disk"     
[64693] "cigar"     "circle"    "rectangle" "triangle"  "unknown"   "light"    
[64699] NA          "cigar"     "formation" "changing"  "other"     "triangle" 
[64705] "light"     "formation" "formation" NA          "unknown"   "cigar"    
[64711] NA          "oval"      "light"     "unknown"   "triangle"  "triangle" 
[64717] "fireball"  "chevron"   "circle"    "light"     "light"     "rectangle"
[64723] "triangle"  "sphere"    "other"     "cigar"     "egg"       "cigar"    
[64729] "cigar"     "disk"      "changing"  "other"     "light"     "triangle" 
[64735] "light"     "circle"    "light"     "unknown"   "disk"      "triangle" 
[64741] "diamond"   "unknown"   "triangle"  "light"     "light"     NA         
[64747] "circle"    "other"     NA          "formation" NA          NA         
[64753] "teardrop"  "rectangle" "circle"    "light"     "disk"      "triangle" 
[64759] "changing"  "diamond"   "triangle"  "disk"      "triangle"  "rectangle"
[64765] "light"     "other"     "sphere"    "formation" "light"     "fireball" 
[64771] "sphere"    "triangle"  "fireball"  "formation" NA          "triangle" 
[64777] "disk"      "disk"      "light"     "cone"      "disk"      "light"    
[64783] "sphere"    "other"     "oval"      "unknown"   "light"     "light"    
[64789] "light"     "triangle"  "light"     "chevron"   "teardrop"  "light"    
[64795] "light"     "light"     "light"     "cylinder"  "triangle"  "other"    
[64801] "sphere"    "oval"      "fireball"  "light"     "disk"      "teardrop" 
[64807] "circle"    "chevron"   "triangle"  "circle"    "cylinder"  "formation"
[64813] "light"     "circle"    "disk"      "other"     "triangle"  "other"    
[64819] "cylinder"  "fireball"  "formation" "teardrop"  "oval"      "unknown"  
[64825] "other"     "unknown"   "unknown"   "fireball"  "light"     "rectangle"
[64831] "other"     "teardrop"  "unknown"   "light"     "triangle"  "circle"   
[64837] "light"     "flash"     "sphere"    "other"     "light"     "light"    
[64843] "disk"      "light"     "unknown"   "unknown"   "triangle"  "light"    
[64849] "circle"    "sphere"    "unknown"   "triangle"  "unknown"   "other"    
[64855] "unknown"   "circle"    "circle"    "sphere"    "fireball"  "cross"    
[64861] "disk"      "circle"    "sphere"    "light"     "light"     "light"    
[64867] "light"     "light"     "triangle"  "rectangle" "light"     "other"    
[64873] "cigar"     "cylinder"  "oval"      "light"     "changing"  "circle"   
[64879] "triangle"  "sphere"    "circle"    "unknown"   "oval"      "sphere"   
[64885] "circle"    "cigar"     "oval"      "circle"    "light"     "diamond"  
[64891] "triangle"  "disk"      "disk"      "changing"  "circle"    "triangle" 
[64897] "teardrop"  "unknown"   "triangle"  "triangle"  "light"     "sphere"   
[64903] "fireball"  "sphere"    "disk"      "light"     "triangle"  "cigar"    
[64909] "light"     "oval"      "fireball"  "unknown"   "diamond"   "unknown"  
[64915] "light"     "light"     "circle"    "unknown"   "cylinder"  "disk"     
[64921] "triangle"  "sphere"    "light"     "triangle"  "sphere"    "fireball" 
[64927] "disk"      "light"     "other"     "light"     "light"     "light"    
[64933] "disk"      "disk"      "other"     NA          "oval"      "light"    
[64939] "light"     "sphere"    "light"     "light"     "light"     "triangle" 
[64945] "light"     "light"     "other"     "changing"  "unknown"   "unknown"  
[64951] "diamond"   "light"     "sphere"    "sphere"    "circle"    "sphere"   
[64957] "rectangle" "light"     "chevron"   "cylinder"  "circle"    "formation"
[64963] "disk"      "light"     "light"     "fireball"  "fireball"  "light"    
[64969] "disk"      "light"     "unknown"   "rectangle" "cylinder"  "light"    
[64975] "other"     "light"     "light"     "oval"      "unknown"   "light"    
[64981] "triangle"  "circle"    "diamond"   "circle"    "triangle"  "other"    
[64987] "triangle"  "triangle"  "circle"    "disk"      "light"     "other"    
[64993] "light"     "circle"    "disk"      "fireball"  "circle"    "sphere"   
[64999] "light"     "light"     "disk"      "fireball"  "circle"    "light"    
[65005] "light"     "sphere"    "rectangle" "triangle"  "light"     "fireball" 
[65011] "circle"    "flash"     "oval"      "circle"    "formation" "other"    
[65017] "oval"      "unknown"   "oval"      "cigar"     "light"     "light"    
[65023] "disk"      "disk"      "unknown"   "disk"      "sphere"    "sphere"   
[65029] "cigar"     "cigar"     "oval"      "oval"      "oval"      "light"    
[65035] "light"     "triangle"  "light"     "egg"       "rectangle" "formation"
[65041] "fireball"  "formation" "formation" "other"     "other"     "light"    
[65047] "unknown"   "light"     "circle"    "cylinder"  "other"     "disk"     
[65053] "other"     "triangle"  "light"     "light"     "fireball"  "triangle" 
[65059] "triangle"  "rectangle" "disk"      "fireball"  "disk"      "light"    
[65065] "fireball"  "sphere"    "circle"    "circle"    "circle"    "light"    
[65071] "sphere"    "sphere"    "light"     "teardrop"  "light"     "light"    
[65077] "disk"      "fireball"  "disk"      "oval"      "cigar"     "unknown"  
[65083] "triangle"  "light"     "disk"      "sphere"    "triangle"  "light"    
[65089] "triangle"  "triangle"  "light"     "light"     "fireball"  "triangle" 
[65095] "flash"     "sphere"    "disk"      "light"     "sphere"    "changing" 
[65101] "unknown"   "unknown"   "other"     "disk"      "light"     "circle"   
[65107] NA          "cylinder"  "disk"      "cylinder"  "circle"    NA         
[65113] "cigar"     "disk"      "light"     "light"     "disk"      "fireball" 
[65119] "triangle"  "triangle"  "sphere"    "unknown"   "light"     "circle"   
[65125] "other"     "other"     "other"     "flash"     "oval"      "light"    
[65131] "light"     "sphere"    "formation" "light"     "other"     "fireball" 
[65137] "sphere"    "fireball"  "light"     "unknown"   "triangle"  "light"    
[65143] "other"     "sphere"    "light"     "circle"    "disk"      "rectangle"
[65149] "disk"      "sphere"    "light"     "unknown"   "circle"    "light"    
[65155] "circle"    "oval"      "unknown"   "light"     "rectangle" "changing" 
[65161] "light"     "flash"     "rectangle" "formation" "unknown"   "rectangle"
[65167] "light"     "triangle"  "light"     "light"     "circle"    "unknown"  
[65173] "egg"       "light"     "oval"      "flash"     "cigar"     "unknown"  
[65179] "cigar"     "light"     "light"     "fireball"  "circle"    "light"    
[65185] "sphere"    "circle"    "light"     "light"     "triangle"  "unknown"  
[65191] "triangle"  "triangle"  "circle"    "circle"    "light"     "fireball" 
[65197] "fireball"  "unknown"   "triangle"  "light"     "cigar"     "fireball" 
[65203] "changing"  "triangle"  "sphere"    "fireball"  "fireball"  "fireball" 
[65209] "circle"    "triangle"  "disk"      "formation" "unknown"   "cylinder" 
[65215] "sphere"    "rectangle" "rectangle" "triangle"  "cigar"     "fireball" 
[65221] "oval"      "circle"    "oval"      "unknown"   "light"     "other"    
[65227] "cone"      "light"     "oval"      "circle"    "fireball"  "circle"   
[65233] "circle"    "fireball"  "light"     "unknown"   "light"     "fireball" 
[65239] "fireball"  "sphere"    "fireball"  "circle"    "fireball"  "fireball" 
[65245] "fireball"  "circle"    "oval"      "fireball"  "light"     "fireball" 
[65251] "fireball"  "fireball"  "fireball"  "formation" "sphere"    "circle"   
[65257] "other"     "light"     "fireball"  "sphere"    "formation" "fireball" 
[65263] "fireball"  "fireball"  "formation" "fireball"  "circle"    "cigar"    
[65269] "light"     "cigar"     "other"     "egg"       "sphere"    "oval"     
[65275] "egg"       "cigar"     "circle"    "circle"    "disk"      "disk"     
[65281] "cigar"     "triangle"  NA          "oval"      "other"     NA         
[65287] "disk"      "circle"    "changing"  "sphere"    "triangle"  "sphere"   
[65293] "light"     "cone"      "light"     "unknown"   "cigar"     "other"    
[65299] "sphere"    "triangle"  "disk"      "light"     "light"     "formation"
[65305] "triangle"  "cigar"     "circle"    "oval"      "light"     "disk"     
[65311] "formation" "egg"       "oval"      "chevron"   "egg"       "sphere"   
[65317] "triangle"  "light"     "disk"      "other"     "oval"      "light"    
[65323] "unknown"   "sphere"    "disk"      "light"     "disk"      "sphere"   
[65329] "triangle"  "triangle"  "light"     "circle"    "sphere"    "cigar"    
[65335] "disk"      "oval"      "oval"      "sphere"    "light"     "triangle" 
[65341] "triangle"  "oval"      "fireball"  "circle"    "disk"      "light"    
[65347] "unknown"   "triangle"  "triangle"  "unknown"   "light"     "light"    
[65353] "cigar"     "oval"      "diamond"   "fireball"  "sphere"    "changing" 
[65359] "circle"    "triangle"  "light"     "formation" "triangle"  "sphere"   
[65365] "light"     "triangle"  "disk"      "other"     "changing"  "unknown"  
[65371] "triangle"  "cylinder"  "unknown"   "unknown"   "other"     "fireball" 
[65377] "flash"     "other"     "light"     "rectangle" "circle"    "triangle" 
[65383] "cross"     "fireball"  "light"     "formation" "diamond"   "fireball" 
[65389] "triangle"  "disk"      "light"     "oval"      "chevron"   "triangle" 
[65395] "fireball"  "sphere"    "cigar"     "other"     "cylinder"  "oval"     
[65401] "circle"    "formation" "circle"    "cylinder"  "sphere"    "light"    
[65407] "oval"      "oval"      "oval"      "other"     "formation" "diamond"  
[65413] "sphere"    "fireball"  "fireball"  "sphere"    "formation" "sphere"   
[65419] "light"     "fireball"  "triangle"  "fireball"  "formation" "fireball" 
[65425] "light"     NA          "light"     "other"     "triangle"  "fireball" 
[65431] "circle"    "light"     "flash"     "cross"     "circle"    "circle"   
[65437] "changing"  "sphere"    "disk"      "oval"      "sphere"    "oval"     
[65443] "light"     "light"     "fireball"  "light"     "circle"    "disk"     
[65449] "light"     "fireball"  "fireball"  "light"     "light"     "fireball" 
[65455] "sphere"    "light"     "light"     "light"     "cylinder"  "sphere"   
[65461] "cone"      "sphere"    "fireball"  "flash"     "light"     "triangle" 
[65467] "teardrop"  "light"     "light"     "teardrop"  "fireball"  NA         
[65473] "light"     "circle"    "unknown"   "sphere"    "flash"     "other"    
[65479] "triangle"  NA          "fireball"  "triangle"  "triangle"  "disk"     
[65485] "disk"      "fireball"  "light"     "triangle"  "light"     "light"    
[65491] "circle"    "sphere"    "fireball"  "light"     "triangle"  "fireball" 
[65497] "oval"      "light"     "circle"    NA          "light"     "fireball" 
[65503] "teardrop"  "other"     "disk"      "circle"    "disk"      "disk"     
[65509] "cone"      "light"     "unknown"   "disk"      "oval"      "chevron"  
[65515] "changing"  NA          "triangle"  "diamond"   "other"     "triangle" 
[65521] "light"     "circle"    "oval"      NA          NA          NA         
[65527] "fireball"  NA          "triangle"  "cigar"     "circle"    "triangle" 
[65533] "formation" "disk"      "other"     "light"     "diamond"   "formation"
[65539] "changing"  "other"     "unknown"   "other"     "other"     "light"    
[65545] "other"     "fireball"  "light"     "light"     "light"     "disk"     
[65551] "formation" "other"     "other"     "other"     "changing"  "cylinder" 
[65557] "other"     "oval"      "egg"       "fireball"  "light"     "circle"   
[65563] "other"     "sphere"    "light"     "light"     "circle"    "triangle" 
[65569] "disk"      "circle"    "cigar"     "triangle"  "light"     "circle"   
[65575] "triangle"  "oval"      "light"     "cylinder"  "chevron"   "light"    
[65581] "unknown"   "light"     "light"     "triangle"  "unknown"   "egg"      
[65587] "other"     "circle"    "circle"    "fireball"  "triangle"  "triangle" 
[65593] "light"     "disk"      "light"     "circle"    "light"     "other"    
[65599] "other"     "circle"    "sphere"    "light"     "egg"       "circle"   
[65605] "triangle"  "circle"    "cigar"     NA          "disk"      "other"    
[65611] "circle"    "circle"    "light"     "circle"    "triangle"  "light"    
[65617] "chevron"   "cylinder"  "other"     "disk"      "teardrop"  "rectangle"
[65623] "light"     "circle"    "flash"     "triangle"  "light"     "other"    
[65629] "light"     "light"     "fireball"  "disk"      "circle"    "fireball" 
[65635] "light"     "other"     "light"     "light"     "light"     "fireball" 
[65641] "light"     "light"     "fireball"  "light"     "circle"    "light"    
[65647] "changing"  "disk"      "circle"    "cigar"     "light"     "other"    
[65653] "fireball"  "circle"    "cross"     "unknown"   "circle"    "circle"   
[65659] "light"     "fireball"  "circle"    "changing"  "triangle"  "disk"     
[65665] "fireball"  "light"     "formation" "disk"      "circle"    "triangle" 
[65671] "disk"      "light"     "light"     "light"     "fireball"  "sphere"   
[65677] "light"     "fireball"  "triangle"  "light"     "light"     "fireball" 
[65683] "fireball"  "unknown"   "fireball"  "disk"      "disk"      NA         
[65689] "fireball"  "sphere"    "light"     "light"     "circle"    "triangle" 
[65695] "unknown"   "changing"  "oval"      "oval"      "sphere"    "sphere"   
[65701] "triangle"  "circle"    "circle"    "flash"     "circle"    "circle"   
[65707] "other"     NA          "rectangle" "fireball"  "sphere"    "oval"     
[65713] "light"     "triangle"  "triangle"  "unknown"   "other"     "cylinder" 
[65719] "diamond"   "triangle"  "unknown"   "unknown"   "triangle"  NA         
[65725] "triangle"  "disk"      "other"     "triangle"  "triangle"  "light"    
[65731] "formation" "formation" "cigar"     "light"     "other"     "other"    
[65737] "other"     "light"     "light"     "light"     "other"     "teardrop" 
[65743] "other"     "unknown"   "cigar"     "cigar"     "other"     "disk"     
[65749] "disk"      "unknown"   "triangle"  "oval"      "egg"       "unknown"  
[65755] "other"     "cigar"     "light"     "unknown"   "light"     "cigar"    
[65761] "triangle"  "light"     "sphere"    NA          "triangle"  "triangle" 
[65767] "fireball"  "fireball"  NA          "egg"       "fireball"  "light"    
[65773] "fireball"  "unknown"   "cigar"     "triangle"  "triangle"  "triangle" 
[65779] "light"     "unknown"   "triangle"  "diamond"   "light"     "other"    
[65785] "teardrop"  "unknown"   "sphere"    "other"     "sphere"    "triangle" 
[65791] "light"     "chevron"   "chevron"   "other"     "changing"  "formation"
[65797] "formation" "unknown"   "triangle"  "disk"      "triangle"  "chevron"  
[65803] "formation" "triangle"  "triangle"  "triangle"  "triangle"  "unknown"  
[65809] "triangle"  "triangle"  "unknown"   "oval"      "circle"    "light"    
[65815] "circle"    "changing"  "sphere"    "light"     "unknown"   "sphere"   
[65821] "unknown"   "cigar"     "egg"       "changing"  "cigar"     "formation"
[65827] "light"     "sphere"    "disk"      "flash"     "changing"  "fireball" 
[65833] "light"     "disk"      "light"     "disk"      "cigar"     "teardrop" 
[65839] "other"     "light"     "other"     "light"     "diamond"   "sphere"   
[65845] "rectangle" "other"     "unknown"   "disk"      "circle"    "circle"   
[65851] "light"     "triangle"  "light"     "light"     "diamond"   "light"    
[65857] "cylinder"  "fireball"  "rectangle" "circle"    "triangle"  "cigar"    
[65863] "cigar"     "disk"      "disk"      "light"     "light"     "unknown"  
[65869] "light"     "formation" "other"     "other"     "light"     "light"    
[65875] "sphere"    "circle"    NA          "light"     "light"     NA         
[65881] NA          NA          "circle"    "light"     "disk"      "circle"   
[65887] "triangle"  "fireball"  "circle"    "formation" "cigar"     "unknown"  
[65893] "other"     "oval"      "unknown"   "sphere"    "other"     "light"    
[65899] "light"     "triangle"  "sphere"    "cigar"     "light"     "teardrop" 
[65905] "flash"     "flash"     "circle"    "light"     "light"     "sphere"   
[65911] "triangle"  "cigar"     "unknown"   "light"     "circle"    "fireball" 
[65917] "cigar"     "other"     "fireball"  "light"     "light"     "oval"     
[65923] "light"     "light"     "light"     "triangle"  "light"     "triangle" 
[65929] "fireball"  "triangle"  "cigar"     "circle"    "triangle"  "disk"     
[65935] "sphere"    "formation" "unknown"   "other"     "fireball"  "oval"     
[65941] "sphere"    "oval"      "circle"    "sphere"    "unknown"   "light"    
[65947] "fireball"  "other"     "light"     "rectangle" "unknown"   "other"    
[65953] "circle"    "flash"     "sphere"    "unknown"   "disk"      "sphere"   
[65959] "oval"      "sphere"    "cone"      "light"     "triangle"  "other"    
[65965] "other"     "sphere"    "triangle"  "diamond"   "disk"      "light"    
[65971] "disk"      "oval"      "triangle"  "oval"      "disk"      "diamond"  
[65977] "formation" "unknown"   NA          "unknown"   "egg"       NA         
[65983] "rectangle" "fireball"  "cylinder"  "circle"    "other"     "cigar"    
[65989] "fireball"  "light"     "cigar"     "rectangle" "changing"  "triangle" 
[65995] "flash"     "fireball"  "disk"      "circle"    "other"     "light"    
[66001] "formation" "disk"      "triangle"  "circle"    "circle"    "light"    
[66007] NA          "flash"     "disk"      "circle"    "light"     "light"    
[66013] "disk"      "disk"      "triangle"  "circle"    "disk"      "fireball" 
[66019] "fireball"  "unknown"   "unknown"   "light"     "diamond"   "sphere"   
[66025] "light"     "disk"      "sphere"    "unknown"   "triangle"  "light"    
[66031] "sphere"    "other"     "light"     "oval"      "triangle"  "formation"
[66037] "circle"    "unknown"   "other"     "light"     "unknown"   "oval"     
[66043] "light"     "light"     "light"     "disk"      "light"     "triangle" 
[66049] "disk"      "disk"      "unknown"   "triangle"  "triangle"  "cigar"    
[66055] "formation" "other"     "light"     "oval"      "other"     "circle"   
[66061] "light"     "oval"      "sphere"    "fireball"  "oval"      "triangle" 
[66067] "triangle"  "unknown"   "oval"      "cylinder"  "diamond"   "oval"     
[66073] "sphere"    "light"     "sphere"    "other"     "other"     "light"    
[66079] "rectangle" "unknown"   "disk"      "unknown"   "fireball"  "unknown"  
[66085] "circle"    "unknown"   "light"     "sphere"    "rectangle" "oval"     
[66091] "fireball"  NA          "circle"    NA          "changing"  "other"    
[66097] "light"     "light"     "unknown"   "unknown"   "sphere"    "circle"   
[66103] "disk"      "changing"  "light"     "light"     "unknown"   "unknown"  
[66109] "light"     "triangle"  "light"     "light"     "light"     "sphere"   
[66115] "light"     "circle"    "light"     "flash"     "light"     "circle"   
[66121] "diamond"   "light"     "sphere"    "disk"      "formation" "circle"   
[66127] "cigar"     "changing"  "triangle"  "fireball"  "fireball"  "light"    
[66133] "circle"    "other"     "sphere"    "circle"    "light"     "light"    
[66139] "light"     "other"     "triangle"  "fireball"  "triangle"  "light"    
[66145] "fireball"  "triangle"  "oval"      "circle"    "fireball"  "fireball" 
[66151] "circle"    "circle"    "circle"    "circle"    "unknown"   "light"    
[66157] "light"     "circle"    "fireball"  "triangle"  "fireball"  "unknown"  
[66163] "triangle"  "light"     "sphere"    "light"     "triangle"  "circle"   
[66169] "fireball"  "egg"       "light"     "egg"       "light"     "light"    
[66175] "changing"  "cigar"     "other"     "formation" "light"     "fireball" 
[66181] "light"     "light"     "light"     "light"     "formation" "fireball" 
[66187] "circle"    "sphere"    "light"     "flash"     "flash"     "light"    
[66193] "light"     "fireball"  "circle"    "circle"    NA          "sphere"   
[66199] "unknown"   "disk"      "circle"    "disk"      "circle"    "light"    
[66205] "sphere"    "unknown"   "circle"    "cigar"     "circle"    "disk"     
[66211] "oval"      "disk"      "light"     "unknown"   "other"     "unknown"  
[66217] "sphere"    "unknown"   "sphere"    "light"     "rectangle" "light"    
[66223] NA          "circle"    NA          "sphere"    "unknown"   "other"    
[66229] "fireball"  NA          "teardrop"  "oval"      "oval"      "cigar"    
[66235] "triangle"  "light"     "light"     "disk"      "flash"     "light"    
[66241] "other"     "oval"      "circle"    "egg"       "circle"    "triangle" 
[66247] "triangle"  "sphere"    "light"     "flash"     "diamond"   "disk"     
[66253] "light"     "flash"     "light"     "circle"    "light"     "light"    
[66259] "unknown"   "triangle"  "circle"    "light"     "fireball"  "unknown"  
[66265] "light"     "cylinder"  "light"     "light"     "other"     "sphere"   
[66271] "light"     "sphere"    "disk"      "triangle"  "changing"  "light"    
[66277] "disk"      NA          "fireball"  "light"     "formation" "light"    
[66283] "sphere"    "oval"      "circle"    "other"     "sphere"    "diamond"  
[66289] "formation" "light"     "light"     "circle"    "unknown"   "unknown"  
[66295] "triangle"  "light"     "disk"      "other"     "unknown"   "light"    
[66301] "cylinder"  "diamond"   "fireball"  "unknown"   "light"     "formation"
[66307] "rectangle" "unknown"   "triangle"  "unknown"   "light"     "triangle" 
[66313] "cigar"     "rectangle" "disk"      "diamond"   "sphere"    "light"    
[66319] "light"     "triangle"  "oval"      "disk"      "cylinder"  "chevron"  
[66325] "other"     "light"     "formation" "flash"     "formation" "rectangle"
[66331] "light"     "light"     "light"     "oval"      "circle"    "sphere"   
[66337] "oval"      "light"     "light"     "sphere"    "sphere"    "cigar"    
[66343] "light"     "light"     "triangle"  "unknown"   "sphere"    "formation"
[66349] "changing"  "light"     "oval"      "sphere"    "triangle"  "light"    
[66355] "sphere"    "other"     "unknown"   "light"     "circle"    "diamond"  
[66361] "diamond"   "triangle"  "flash"     "other"     NA          "disk"     
[66367] "egg"       "diamond"   "light"     "circle"    "light"     "sphere"   
[66373] "fireball"  "other"     "disk"      "light"     "cylinder"  "changing" 
[66379] "rectangle" "triangle"  "oval"      "sphere"    "unknown"   "light"    
[66385] "light"     "disk"      "circle"    "oval"      "light"     "unknown"  
[66391] "triangle"  "rectangle" "sphere"    "other"     "circle"    "light"    
[66397] "cigar"     "unknown"   "fireball"  "light"     "light"     "oval"     
[66403] "sphere"    "light"     "circle"    "disk"      "circle"    "light"    
[66409] "light"     "light"     "changing"  NA          "light"     "fireball" 
[66415] "disk"      "oval"      "other"     "other"     "oval"      "fireball" 
[66421] "other"     "cone"      "light"     "circle"    "other"     NA         
[66427] "rectangle" "other"     "changing"  "cylinder"  "circle"    "chevron"  
[66433] "circle"    "light"     "disk"      "changing"  "sphere"    "fireball" 
[66439] "fireball"  "other"     "chevron"   "fireball"  "fireball"  "oval"     
[66445] "rectangle" "changing"  "unknown"   "light"     "triangle"  "oval"     
[66451] "other"     "oval"      "oval"      "teardrop"  "circle"    "circle"   
[66457] "fireball"  "sphere"    "other"     "cross"     "disk"      "oval"     
[66463] "fireball"  "fireball"  "changing"  "light"     "circle"    "sphere"   
[66469] "sphere"    "light"     "sphere"    "circle"    "fireball"  "cigar"    
[66475] NA          "other"     "fireball"  "triangle"  "light"     "unknown"  
[66481] "light"     "light"     "triangle"  "light"     "oval"      "cigar"    
[66487] "disk"      "sphere"    "circle"    "oval"      "sphere"    "sphere"   
[66493] "fireball"  "sphere"    "flash"     "triangle"  "cylinder"  "oval"     
[66499] "light"     "changing"  "circle"    "unknown"   "triangle"  "light"    
[66505] "unknown"   "light"     "light"     "light"     "rectangle" "cylinder" 
[66511] "sphere"    "oval"      NA          "formation" NA          "formation"
[66517] "changing"  "triangle"  "light"     "fireball"  "cylinder"  "oval"     
[66523] "triangle"  "light"     "rectangle" "sphere"    "changing"  "sphere"   
[66529] "light"     "disk"      "flash"     "oval"      "light"     "unknown"  
[66535] "disk"      "light"     NA          "fireball"  "light"     "unknown"  
[66541] "light"     "light"     "oval"      "cylinder"  "triangle"  "formation"
[66547] "light"     NA          NA          "unknown"   "light"     NA         
[66553] "circle"    "circle"    "oval"      "light"     "circle"    "cigar"    
[66559] "light"     "triangle"  "oval"      "fireball"  "disk"      "circle"   
[66565] "flash"     "light"     "light"     "formation" "fireball"  "light"    
[66571] "light"     "changing"  "unknown"   "light"     "light"     "light"    
[66577] "light"     "light"     "light"     "formation" NA          "unknown"  
[66583] "fireball"  "light"     "light"     "light"     "flash"     "fireball" 
[66589] "circle"    "light"     "circle"    "unknown"   "unknown"   "light"    
[66595] "disk"      "cigar"     "sphere"    "sphere"    "cylinder"  "light"    
[66601] "light"     "light"     "fireball"  "other"     "triangle"  "unknown"  
[66607] "changing"  "light"     "triangle"  "egg"       "disk"      "light"    
[66613] "diamond"   "light"     "circle"    "cross"     "cigar"     "unknown"  
[66619] "light"     "oval"      "light"     "other"     "unknown"   "light"    
[66625] "rectangle" "diamond"   "unknown"   "other"     "light"     "unknown"  
[66631] "circle"    "formation" "triangle"  "unknown"   "sphere"    "changing" 
[66637] "light"     "light"     "disk"      "light"     "fireball"  "fireball" 
[66643] "cross"     "triangle"  "unknown"   "sphere"    "light"     "sphere"   
[66649] "light"     "changing"  "light"     "light"     "triangle"  "light"    
[66655] "light"     "circle"    "other"     "circle"    "light"     "light"    
[66661] "light"     "unknown"   "disk"      "light"     "unknown"   NA         
[66667] "circle"    "sphere"    "other"     "fireball"  "teardrop"  "light"    
[66673] "disk"      "light"     "teardrop"  "sphere"    "cylinder"  "sphere"   
[66679] "rectangle" "cigar"     "cigar"     "cigar"     "fireball"  "fireball" 
[66685] "fireball"  "disk"      "flash"     "changing"  "circle"    "light"    
[66691] "circle"    "circle"    "light"     "unknown"   "disk"      "sphere"   
[66697] "formation" "light"     "light"     "fireball"  "other"     "circle"   
[66703] "flash"     "sphere"    "sphere"    "unknown"   "sphere"    "fireball" 
[66709] "light"     "light"     "unknown"   "light"     "triangle"  "light"    
[66715] "fireball"  "circle"    "circle"    "light"     "circle"    "fireball" 
[66721] "cone"      "triangle"  "light"     "flash"     "unknown"   NA         
[66727] "light"     "light"     "disk"      "sphere"    "light"     "cylinder" 
[66733] "light"     "light"     "cigar"     "egg"       NA          "disk"     
[66739] NA          NA          NA          "unknown"   "triangle"  "light"    
[66745] "light"     "disk"      "unknown"   "changing"  "fireball"  "circle"   
[66751] "circle"    "other"     "triangle"  "flash"     "oval"      "light"    
[66757] "disk"      "oval"      "light"     "unknown"   "light"     "sphere"   
[66763] "circle"    "oval"      "light"     "light"     "light"     "light"    
[66769] "light"     "triangle"  "formation" "diamond"   "light"     "oval"     
[66775] "unknown"   "light"     "oval"      "circle"    "cone"      "light"    
[66781] "circle"    "triangle"  "rectangle" "light"     "rectangle" "disk"     
[66787] "oval"      "circle"    "flash"     "oval"      "light"     "light"    
[66793] "flash"     "light"     "light"     "disk"      "unknown"   NA         
[66799] "light"     "light"     "unknown"   "flash"     "disk"      "circle"   
[66805] "disk"      "other"     "circle"    "circle"    "fireball"  "circle"   
[66811] "cross"     "light"     "light"     "light"     "other"     "other"    
[66817] "oval"      "other"     "diamond"   "other"     "rectangle" "teardrop" 
[66823] "light"     "sphere"    "disk"      "teardrop"  "cylinder"  "fireball" 
[66829] "circle"    "sphere"    "circle"    "triangle"  "rectangle" "oval"     
[66835] "triangle"  "disk"      "oval"      "cigar"     "light"     "disk"     
[66841] "circle"    "cylinder"  "other"     "disk"      "light"     "disk"     
[66847] "light"     "oval"      "triangle"  "oval"      "egg"       "fireball" 
[66853] "oval"      "light"     "unknown"   "light"     "disk"      "fireball" 
[66859] "teardrop"  "oval"      "unknown"   "triangle"  "unknown"   "light"    
[66865] "disk"      "light"     "triangle"  "cone"      "light"     "triangle" 
[66871] "oval"      "unknown"   "oval"      "cigar"     "light"     "sphere"   
[66877] "other"     "unknown"   "cylinder"  "light"     "light"     "unknown"  
[66883] "light"     "unknown"   "disk"      "other"     "circle"    "circle"   
[66889] "triangle"  "sphere"    "cross"     "light"     "light"     "light"    
[66895] "light"     "triangle"  "formation" "light"     "triangle"  "triangle" 
[66901] "other"     "disk"      "other"     "disk"      "cigar"     "fireball" 
[66907] "triangle"  "changing"  "flash"     "light"     "oval"      "disk"     
[66913] "flash"     "other"     "disk"      "circle"    "oval"      "changing" 
[66919] "light"     "other"     "light"     "sphere"    "other"     "rectangle"
[66925] "light"     "light"     "sphere"    "triangle"  "formation" "fireball" 
[66931] "fireball"  "circle"    "fireball"  "circle"    "fireball"  "other"    
[66937] "light"     "fireball"  "cylinder"  "circle"    "triangle"  "circle"   
[66943] "triangle"  "teardrop"  "sphere"    "fireball"  "sphere"    "diamond"  
[66949] "fireball"  "triangle"  "oval"      "light"     "formation" "fireball" 
[66955] "circle"    "light"     "circle"    "fireball"  "triangle"  "circle"   
[66961] "changing"  "fireball"  "flash"     "sphere"    "fireball"  "circle"   
[66967] "light"     "disk"      "fireball"  "light"     "formation" "circle"   
[66973] "sphere"    "sphere"    "triangle"  "fireball"  "fireball"  "formation"
[66979] "circle"    "fireball"  "circle"    "fireball"  "triangle"  "circle"   
[66985] "light"     "fireball"  "cross"     "fireball"  "fireball"  "light"    
[66991] "fireball"  "sphere"    "fireball"  "rectangle" "light"     "light"    
[66997] "light"     "fireball"  "oval"      "circle"    "formation" "disk"     
[67003] "disk"      "light"     "circle"    "disk"      "disk"      "triangle" 
[67009] "cigar"     "disk"      "other"     "cigar"     "flash"     "light"    
[67015] NA          NA          NA          NA          NA          "sphere"   
[67021] NA          "other"     "triangle"  "cigar"     "fireball"  "triangle" 
[67027] "triangle"  "disk"      "disk"      "rectangle" "oval"      "changing" 
[67033] "other"     "other"     "circle"    "circle"    "triangle"  "fireball" 
[67039] "light"     "triangle"  "egg"       "fireball"  "sphere"    "circle"   
[67045] "chevron"   "unknown"   "oval"      "other"     "triangle"  "formation"
[67051] "circle"    "circle"    "unknown"   NA          "light"     "unknown"  
[67057] "triangle"  "changing"  "light"     "triangle"  "disk"      "oval"     
[67063] "changing"  "unknown"   "changing"  "light"     "light"     "light"    
[67069] "light"     "circle"    "unknown"   "unknown"   "disk"      "fireball" 
[67075] "other"     "unknown"   "changing"  "unknown"   "circle"    "sphere"   
[67081] "teardrop"  "cigar"     "disk"      "light"     "circle"    "fireball" 
[67087] "flash"     "other"     "fireball"  "chevron"   "oval"      "circle"   
[67093] "light"     "egg"       "triangle"  NA          "diamond"   "disk"     
[67099] "circle"    "light"     "other"     "diamond"   "triangle"  "diamond"  
[67105] "triangle"  "disk"      "other"     "disk"      "circle"    "unknown"  
[67111] "unknown"   "disk"      "fireball"  "triangle"  "unknown"   "formation"
[67117] "chevron"   "chevron"   "circle"    "triangle"  "oval"      "light"    
[67123] "unknown"   "triangle"  "light"     "flash"     "light"     "light"    
[67129] "unknown"   "light"     "light"     "cylinder"  "disk"      "disk"     
[67135] "disk"      "disk"      "other"     "oval"      "oval"      "light"    
[67141] "circle"    "rectangle" "formation" "light"     "flash"     "other"    
[67147] "light"     "unknown"   "sphere"    "light"     "cigar"     "circle"   
[67153] "other"     "formation" "oval"      "other"     "disk"      "unknown"  
[67159] "circle"    "fireball"  "disk"      "oval"      "circle"    "other"    
[67165] "light"     "fireball"  "oval"      "disk"      "triangle"  "unknown"  
[67171] "triangle"  "fireball"  "light"     "light"     "light"     "light"    
[67177] "light"     "triangle"  "flash"     "oval"      "circle"    "light"    
[67183] "unknown"   "light"     "other"     "unknown"   "diamond"   "formation"
[67189] "light"     "light"     "triangle"  "rectangle" "light"     "light"    
[67195] "sphere"    "sphere"    "teardrop"  "sphere"    "changing"  "fireball" 
[67201] "triangle"  "unknown"   "other"     "light"     "cross"     "cross"    
[67207] "circle"    "fireball"  "sphere"    "formation" "light"     "fireball" 
[67213] "sphere"    "sphere"    "circle"    "cigar"     "diamond"   "sphere"   
[67219] "other"     "light"     "sphere"    "light"     "circle"    "diamond"  
[67225] "formation" NA          "triangle"  NA          "light"     "light"    
[67231] "triangle"  "circle"    "fireball"  "fireball"  "fireball"  "circle"   
[67237] "light"     "other"     "light"     "circle"    "light"     "triangle" 
[67243] "teardrop"  "triangle"  "other"     "disk"      "changing"  "sphere"   
[67249] "triangle"  "triangle"  "circle"    "triangle"  NA          NA         
[67255] "circle"    NA          NA          "unknown"   "circle"    "light"    
[67261] "circle"    "cylinder"  "light"     "light"     "formation" "changing" 
[67267] "other"     "light"     "triangle"  "changing"  "triangle"  "egg"      
[67273] "unknown"   "disk"      "circle"    "light"     "light"     "fireball" 
[67279] "unknown"   "rectangle" "disk"      "oval"      "unknown"   "unknown"  
[67285] "sphere"    "flash"     "light"     "fireball"  "circle"    NA         
[67291] NA          "other"     "chevron"   "circle"    "unknown"   "sphere"   
[67297] "circle"    "circle"    "disk"      "circle"    "unknown"   "changing" 
[67303] "triangle"  "circle"    "light"     "fireball"  "light"     "other"    
[67309] "sphere"    "cone"      "disk"      "formation" "triangle"  "triangle" 
[67315] "triangle"  "unknown"   "light"     "fireball"  "disk"      "other"    
[67321] "triangle"  "oval"      "light"     "fireball"  "oval"      "sphere"   
[67327] "light"     NA          "light"     "light"     "triangle"  "circle"   
[67333] "light"     NA          "disk"      "light"     "circle"    "circle"   
[67339] "fireball"  "unknown"   "disk"      "unknown"   "other"     "cigar"    
[67345] "sphere"    "oval"      "changing"  "light"     "disk"      "light"    
[67351] "flash"     "oval"      "light"     "fireball"  "other"     "circle"   
[67357] "cylinder"  "light"     "fireball"  "rectangle" "disk"      "oval"     
[67363] "unknown"   "flash"     "circle"    "circle"    "other"     "triangle" 
[67369] "circle"    "diamond"   "oval"      "circle"    "light"     "light"    
[67375] "unknown"   "other"     "disk"      "oval"      "oval"      "circle"   
[67381] "disk"      "other"     "circle"    "circle"    "light"     "sphere"   
[67387] "light"     "triangle"  "oval"      "light"     "circle"    "light"    
[67393] "light"     "fireball"  "unknown"   "light"     "egg"       "sphere"   
[67399] "light"     "light"     "unknown"   "circle"    "light"     "circle"   
[67405] "sphere"    "sphere"    "disk"      "unknown"   "changing"  "light"    
[67411] "other"     "oval"      "light"     "fireball"  "egg"       "circle"   
[67417] "circle"    "triangle"  "fireball"  "light"     "fireball"  "triangle" 
[67423] "light"     "light"     "fireball"  "fireball"  "flash"     "fireball" 
[67429] "circle"    "light"     "cigar"     "cylinder"  "fireball"  "fireball" 
[67435] "fireball"  "light"     "fireball"  "flash"     "light"     "circle"   
[67441] "other"     "teardrop"  "fireball"  "circle"    "unknown"   "circle"   
[67447] NA          "chevron"   "circle"    "triangle"  "sphere"    "sphere"   
[67453] "diamond"   "sphere"    "cigar"     "egg"       "egg"       "flash"    
[67459] "light"     "light"     "unknown"   "light"     "fireball"  "fireball" 
[67465] "sphere"    "triangle"  "circle"    "disk"      "other"     "sphere"   
[67471] "triangle"  "formation" "circle"    "diamond"   "light"     NA         
[67477] "oval"      "fireball"  "sphere"    "triangle"  "circle"    "oval"     
[67483] "circle"    "triangle"  "cigar"     "light"     "unknown"   "oval"     
[67489] "chevron"   "light"     "other"     "cylinder"  "other"     "oval"     
[67495] "cone"      "disk"      "other"     "circle"    "oval"      "light"    
[67501] "light"     "diamond"   "disk"      NA          NA          NA         
[67507] "circle"    NA          NA          NA          "flash"     "light"    
[67513] "triangle"  "triangle"  "other"     "oval"      "fireball"  "triangle" 
[67519] "circle"    "formation" "circle"    "circle"    "circle"    "light"    
[67525] "light"     "teardrop"  "light"     "light"     "flash"     "cigar"    
[67531] "unknown"   "disk"      "diamond"   "light"     "sphere"    "oval"     
[67537] "light"     "cylinder"  "triangle"  "light"     "flash"     "cigar"    
[67543] "triangle"  "other"     "disk"      "unknown"   "diamond"   "circle"   
[67549] "unknown"   "triangle"  "circle"    "unknown"   "circle"    "light"    
[67555] "formation" "changing"  "triangle"  "egg"       "oval"      "rectangle"
[67561] "unknown"   "light"     "formation" "other"     "light"     "light"    
[67567] "triangle"  "circle"    "light"     "other"     "light"     "cylinder" 
[67573] "triangle"  "triangle"  "light"     "disk"      "fireball"  "fireball" 
[67579] "light"     "unknown"   "flash"     "flash"     "fireball"  "flash"    
[67585] "fireball"  "triangle"  "light"     "sphere"    "fireball"  "oval"     
[67591] "triangle"  "formation" "other"     "circle"    "light"     "triangle" 
[67597] "light"     "formation" "triangle"  "light"     "unknown"   "fireball" 
[67603] "disk"      "other"     "circle"    "formation" NA          "cigar"    
[67609] "other"     "disk"      "unknown"   "unknown"   "light"     "light"    
[67615] "oval"      "other"     "light"     "light"     "triangle"  "cylinder" 
[67621] "triangle"  "oval"      "chevron"   "oval"      "light"     "unknown"  
[67627] "fireball"  "circle"    "light"     "light"     "unknown"   "formation"
[67633] "unknown"   "flash"     "light"     "light"     "cigar"     "sphere"   
[67639] "light"     "light"     "egg"       "unknown"   "oval"      "light"    
[67645] "changing"  "other"     "changing"  "light"     "unknown"   "sphere"   
[67651] "light"     "fireball"  "light"     "light"     "circle"    "cylinder" 
[67657] "unknown"   "fireball"  "diamond"   "cigar"     "cigar"     "sphere"   
[67663] "fireball"  "light"     "light"     "cigar"     "fireball"  "fireball" 
[67669] "circle"    "light"     "oval"      "fireball"  "circle"    "triangle" 
[67675] "circle"    "fireball"  "fireball"  "fireball"  "unknown"   "fireball" 
[67681] "light"     "light"     "light"     "fireball"  "sphere"    "fireball" 
[67687] "fireball"  "circle"    "light"     "fireball"  "circle"    "fireball" 
[67693] "rectangle" "triangle"  "circle"    "oval"      "light"     "flash"    
[67699] "oval"      "light"     "triangle"  "circle"    "unknown"   "oval"     
[67705] "circle"    "light"     "unknown"   "light"     "oval"      "fireball" 
[67711] "flash"     "light"     "light"     "circle"    "fireball"  "disk"     
[67717] "circle"    "formation" "triangle"  "cone"      "unknown"   "light"    
[67723] "light"     "light"     "unknown"   "fireball"  "light"     "fireball" 
[67729] "circle"    "sphere"    "light"     "light"     "egg"       "light"    
[67735] "cigar"     "disk"      "other"     "light"     "disk"      "disk"     
[67741] "other"     "other"     "other"     "light"     "diamond"   "oval"     
[67747] NA          NA          NA          "other"     NA          "unknown"  
[67753] "other"     "triangle"  "light"     "triangle"  "oval"      "light"    
[67759] "disk"      "fireball"  "unknown"   "fireball"  "fireball"  "other"    
[67765] "fireball"  "fireball"  "fireball"  "triangle"  "flash"     "unknown"  
[67771] "cigar"     "other"     "light"     "triangle"  "circle"    "light"    
[67777] "sphere"    "circle"    "cigar"     "circle"    "light"     "triangle" 
[67783] "triangle"  "light"     "disk"      "other"     "other"     "oval"     
[67789] "light"     "fireball"  "disk"      "changing"  "disk"      "cylinder" 
[67795] "circle"    "triangle"  "circle"    "rectangle" "sphere"    "flash"    
[67801] "unknown"   "light"     "light"     "flash"     "other"     "light"    
[67807] "other"     "light"     "rectangle" "cigar"     "light"     "other"    
[67813] "unknown"   "light"     "light"     "triangle"  "circle"    "light"    
[67819] "triangle"  "cylinder"  "other"     "light"     "circle"    "sphere"   
[67825] "fireball"  "light"     "rectangle" "light"     "light"     "triangle" 
[67831] "light"     "unknown"   "other"     "changing"  "sphere"    "light"    
[67837] "changing"  "circle"    "other"     "fireball"  "oval"      "other"    
[67843] "disk"      "light"     "diamond"   "other"     "light"     "formation"
[67849] "other"     "egg"       "sphere"    "light"     "sphere"    "rectangle"
[67855] "oval"      "fireball"  "light"     "circle"    "oval"      "disk"     
[67861] "disk"      "changing"  "light"     "disk"      "unknown"   "light"    
[67867] "light"     "oval"      "changing"  "light"     "sphere"    "disk"     
[67873] "formation" "triangle"  NA          "circle"    "formation" "light"    
[67879] "light"     "triangle"  NA          "flash"     "light"     "formation"
[67885] "light"     "triangle"  "oval"      "diamond"   "fireball"  "light"    
[67891] "light"     "sphere"    "light"     "circle"    "teardrop"  "flash"    
[67897] "circle"    "triangle"  "light"     "rectangle" "circle"    "light"    
[67903] "other"     "unknown"   "fireball"  "flash"     "unknown"   "diamond"  
[67909] "cigar"     "chevron"   "other"     "light"     "light"     NA         
[67915] "sphere"    "light"     "unknown"   "circle"    "teardrop"  "unknown"  
[67921] "fireball"  "oval"      "circle"    "circle"    "light"     "fireball" 
[67927] "fireball"  "circle"    "triangle"  "fireball"  "chevron"   "light"    
[67933] "light"     "cigar"     "sphere"    "oval"      "diamond"   "light"    
[67939] "fireball"  "light"     "other"     "light"     "circle"    "unknown"  
[67945] "light"     "fireball"  "light"     "unknown"   "light"     "sphere"   
[67951] "formation" "light"     "disk"      "fireball"  "diamond"   "circle"   
[67957] "egg"       "unknown"   "unknown"   "fireball"  "unknown"   "fireball" 
[67963] "formation" NA          "unknown"   "light"     "light"     "other"    
[67969] "disk"      "fireball"  "diamond"   "cone"      "circle"    "disk"     
[67975] "changing"  "light"     "formation" "cigar"     "oval"      "fireball" 
[67981] "circle"    "fireball"  "circle"    "circle"    "egg"       "disk"     
[67987] "sphere"    "triangle"  "disk"      "disk"      "light"     "light"    
[67993] "disk"      "disk"      "triangle"  "chevron"   "triangle"  "sphere"   
[67999] "circle"    "light"     "oval"      "light"     "rectangle" NA         
[68005] NA          "light"     "light"     "other"     "disk"      "fireball" 
[68011] "disk"      "light"     "rectangle" "cylinder"  "formation" "sphere"   
[68017] "triangle"  "triangle"  "oval"      "triangle"  "light"     NA         
[68023] "light"     "light"     "light"     "flash"     "disk"      "unknown"  
[68029] "oval"      "rectangle" "other"     "light"     "light"     "changing" 
[68035] "fireball"  "triangle"  "other"     "cigar"     "egg"       "egg"      
[68041] "circle"    "oval"      "cylinder"  "light"     "circle"    "oval"     
[68047] "cone"      "diamond"   "light"     "disk"      "triangle"  "light"    
[68053] "flash"     "oval"      "circle"    "oval"      "cylinder"  "oval"     
[68059] "circle"    "circle"    "circle"    "triangle"  "light"     "cylinder" 
[68065] "sphere"    "cigar"     "unknown"   "light"     "fireball"  "light"    
[68071] "light"     "light"     "triangle"  "light"     "other"     "unknown"  
[68077] "sphere"    "egg"       "disk"      "unknown"   "sphere"    "unknown"  
[68083] "egg"       "light"     "triangle"  "unknown"   "sphere"    "unknown"  
[68089] "unknown"   "oval"      "triangle"  "unknown"   "light"     "light"    
[68095] "light"     "unknown"   "changing"  "other"     "changing"  "unknown"  
[68101] NA          "light"     "circle"    "circle"    "light"     "light"    
[68107] "disk"      "disk"      "cigar"     "disk"      "circle"    "triangle" 
[68113] "light"     "chevron"   "sphere"    "oval"      "sphere"    "circle"   
[68119] "formation" "light"     "light"     "circle"    "light"     "teardrop" 
[68125] "light"     "disk"      "triangle"  "light"     "triangle"  "cylinder" 
[68131] "diamond"   "unknown"   "oval"      "circle"    "circle"    "unknown"  
[68137] "fireball"  "light"     "circle"    "circle"    "changing"  "unknown"  
[68143] "oval"      "unknown"   "light"     "circle"    "other"     "sphere"   
[68149] "disk"      "formation" "light"     "sphere"    "fireball"  "light"    
[68155] "fireball"  "unknown"   "fireball"  "light"     "light"     "circle"   
[68161] "fireball"  "circle"    "other"     "light"     "formation" "fireball" 
[68167] "fireball"  "light"     "fireball"  "chevron"   "fireball"  "oval"     
[68173] "circle"    "fireball"  "fireball"  "disk"      "light"     "oval"     
[68179] "circle"    "light"     "triangle"  "light"     "oval"      "changing" 
[68185] "oval"      "circle"    "light"     "unknown"   "light"     "oval"     
[68191] "other"     "fireball"  "light"     "light"     "fireball"  "unknown"  
[68197] "other"     "sphere"    "circle"    "fireball"  "light"     "light"    
[68203] "light"     "oval"      "circle"    "formation" "light"     "circle"   
[68209] "light"     "fireball"  "circle"    "circle"    "fireball"  "circle"   
[68215] "other"     "diamond"   "sphere"    "formation" "formation" "oval"     
[68221] "sphere"    "sphere"    "light"     "light"     "other"     "flash"    
[68227] "light"     "other"     "unknown"   "sphere"    "disk"      "sphere"   
[68233] "fireball"  "light"     "cigar"     "fireball"  "disk"      "fireball" 
[68239] "changing"  "formation" "light"     "cigar"     "light"     "circle"   
[68245] "fireball"  "sphere"    "sphere"    "sphere"    "sphere"    "light"    
[68251] "oval"      "light"     "fireball"  "light"     "teardrop"  "cylinder" 
[68257] "light"     "fireball"  "cylinder"  "triangle"  "cylinder"  "rectangle"
[68263] "other"     "light"     "fireball"  "fireball"  "fireball"  "circle"   
[68269] "fireball"  "light"     "triangle"  "other"     "circle"    "circle"   
[68275] "light"     "light"     "sphere"    "fireball"  "circle"    "unknown"  
[68281] "light"     "fireball"  "fireball"  "fireball"  "light"     "light"    
[68287] "fireball"  "light"     "fireball"  "light"     "light"     "sphere"   
[68293] "sphere"    "fireball"  "fireball"  "other"     "light"     "light"    
[68299] "light"     "fireball"  "oval"      "oval"      "light"     "other"    
[68305] "other"     "fireball"  "light"     "circle"    "light"     "triangle" 
[68311] "circle"    "fireball"  "circle"    "circle"    "circle"    "fireball" 
[68317] "fireball"  "light"     "unknown"   "circle"    "unknown"   "light"    
[68323] "cylinder"  "light"     "unknown"   "flash"     "light"     "egg"      
[68329] "flash"     "formation" "disk"      "fireball"  "light"     "oval"     
[68335] "circle"    NA          "unknown"   "unknown"   "fireball"  "fireball" 
[68341] "light"     "sphere"    "light"     "oval"      "light"     "circle"   
[68347] "circle"    "triangle"  "circle"    "flash"     "chevron"   "fireball" 
[68353] "fireball"  "fireball"  "light"     "oval"      "fireball"  "sphere"   
[68359] "circle"    "triangle"  "light"     "triangle"  "light"     "light"    
[68365] "light"     "oval"      "circle"    "oval"      NA          "disk"     
[68371] "other"     "oval"      "circle"    "unknown"   "fireball"  "light"    
[68377] "light"     "disk"      "light"     "light"     "other"     "disk"     
[68383] "other"     "other"     "unknown"   "cigar"     "disk"      "disk"     
[68389] "circle"    "sphere"    "circle"    "sphere"    "teardrop"  "rectangle"
[68395] "sphere"    "light"     "sphere"    "disk"      "circle"    "diamond"  
[68401] "circle"    "cigar"     "disk"      "triangle"  "sphere"    "sphere"   
[68407] "changing"  "disk"      "light"     "triangle"  "oval"      "disk"     
[68413] "oval"      "cigar"     "triangle"  "circle"    "light"     "light"    
[68419] "sphere"    "triangle"  "sphere"    "disk"      "circle"    "disk"     
[68425] "sphere"    "unknown"   "other"     "sphere"    "other"     "triangle" 
[68431] NA          "light"     "light"     "light"     "cylinder"  NA         
[68437] "circle"    "triangle"  "triangle"  "changing"  "light"     "triangle" 
[68443] "light"     "other"     "other"     "egg"       "cigar"     "sphere"   
[68449] "circle"    "cigar"     "light"     "circle"    "light"     "light"    
[68455] "light"     "disk"      "light"     "cylinder"  "light"     "delta"    
[68461] "light"     NA          "light"     "light"     "light"     "light"    
[68467] "light"     "light"     NA          "light"     "sphere"    "light"    
[68473] "light"     "light"     "light"     "triangle"  "light"     "light"    
[68479] "light"     "light"     "light"     "light"     "oval"      "oval"     
[68485] "oval"      "light"     "light"     "light"     "light"     "light"    
[68491] "light"     "light"     "light"     "light"     "light"     "light"    
[68497] "light"     "light"     "light"     "light"     "light"     "light"    
[68503] "teardrop"  NA          "light"     NA          "disk"      "disk"     
[68509] "light"     "light"     "light"     "light"     "light"     "other"    
[68515] "light"     "diamond"   "sphere"    "circle"    "cone"      "light"    
[68521] "light"     "sphere"    "light"     "sphere"    "light"     "light"    
[68527] "circle"    "other"     NA          "other"     "light"     "flash"    
[68533] "diamond"   "other"     "light"     "light"     NA          "sphere"   
[68539] "light"     "cigar"     "light"     "unknown"   "cigar"     NA         
[68545] "light"     "light"     "cigar"     "triangle"  "fireball"  "light"    
[68551] "light"     "light"     "light"     "light"     "light"     "light"    
[68557] "circle"    "circle"    "circle"    "circle"    "light"     "fireball" 
[68563] "light"     "other"     "triangle"  "triangle"  "light"     "cigar"    
[68569] "light"     "chevron"   "light"     "circle"    "oval"      "light"    
[68575] "circle"    "oval"      "triangle"  "triangle"  "rectangle" "disk"     
[68581] "light"     "light"     "oval"      "triangle"  "circle"    "circle"   
[68587] "unknown"   "cigar"     "cigar"     "fireball"  "sphere"    "oval"     
[68593] "unknown"   "triangle"  "unknown"   "cross"     "sphere"    "unknown"  
[68599] "light"     "disk"      "fireball"  "changing"  "unknown"   "light"    
[68605] "circle"    "other"     "light"     "triangle"  "disk"      "other"    
[68611] "oval"      "circle"    "circle"    "egg"       "egg"       "light"    
[68617] "disk"      "triangle"  "light"     "fireball"  "light"     "circle"   
[68623] "formation" "triangle"  "light"     "changing"  "cylinder"  "teardrop" 
[68629] "chevron"   "disk"      "light"     "triangle"  "rectangle" "light"    
[68635] "circle"    "other"     NA          "disk"      "circle"    "circle"   
[68641] "other"     "disk"      "flash"     "light"     "light"     "light"    
[68647] "light"     "triangle"  "light"     "light"     "circle"    "formation"
[68653] "light"     "circle"    "sphere"    "unknown"   "other"     "circle"   
[68659] "circle"    "light"     "sphere"    "light"     "triangle"  "flash"    
[68665] "light"     "fireball"  "disk"      "triangle"  "oval"      "flash"    
[68671] "other"     "disk"      "disk"      "light"     "circle"    "circle"   
[68677] "cigar"     "cigar"     "light"     "unknown"   "light"     "oval"     
[68683] "triangle"  "light"     "flash"     "cigar"     "other"     "light"    
[68689] "light"     "sphere"    "light"     NA          "circle"    "circle"   
[68695] "sphere"    "disk"      "sphere"    "sphere"    "other"     "cigar"    
[68701] "triangle"  "cylinder"  "cylinder"  "cylinder"  "circle"    "circle"   
[68707] "light"     "formation" "unknown"   "unknown"   "light"     "oval"     
[68713] "light"     "triangle"  "light"     "light"     "triangle"  "rectangle"
[68719] "light"     "light"     "circle"    "fireball"  "disk"      "disk"     
[68725] "light"     "unknown"   "circle"    "circle"    "unknown"   "circle"   
[68731] "oval"      "circle"    "light"     "formation" "fireball"  "changing" 
[68737] "fireball"  "sphere"    "unknown"   "other"     "light"     "triangle" 
[68743] NA          "circle"    "oval"      "other"     "cylinder"  "oval"     
[68749] "fireball"  "teardrop"  "fireball"  "rectangle" "light"     "fireball" 
[68755] "triangle"  "changing"  "light"     "circle"    "light"     "light"    
[68761] "light"     "light"     "light"     "light"     "light"     "triangle" 
[68767] "changing"  "sphere"    "disk"      "disk"      "circle"    "formation"
[68773] "cylinder"  "cigar"     "teardrop"  "rectangle" "sphere"    "sphere"   
[68779] "fireball"  "disk"      "circle"    NA          "fireball"  "sphere"   
[68785] "oval"      "fireball"  "sphere"    "light"     "oval"      "oval"     
[68791] "fireball"  "other"     "sphere"    "sphere"    "circle"    "fireball" 
[68797] "circle"    "other"     "sphere"    "sphere"    "light"     "teardrop" 
[68803] "unknown"   "circle"    "formation" "unknown"   "light"     "light"    
[68809] "circle"    "cigar"     "triangle"  "other"     "cigar"     "triangle" 
[68815] "triangle"  "fireball"  "diamond"   "circle"    "light"     "oval"     
[68821] "fireball"  "fireball"  "light"     "oval"      "sphere"    "changing" 
[68827] "cigar"     "changing"  "cigar"     "light"     "disk"      "sphere"   
[68833] "fireball"  "sphere"    "cigar"     "light"     "sphere"    "light"    
[68839] "light"     "light"     "light"     "other"     "other"     "sphere"   
[68845] "light"     "teardrop"  "light"     "rectangle" "unknown"   "light"    
[68851] "circle"    "light"     "flash"     "unknown"   "light"     "light"    
[68857] "rectangle" "sphere"    "oval"      "circle"    "cylinder"  "disk"     
[68863] "fireball"  "oval"      "light"     "circle"    "circle"    "fireball" 
[68869] "oval"      "light"     "light"     "sphere"    "chevron"   "cigar"    
[68875] "oval"      "circle"    "light"     "circle"    "light"     "sphere"   
[68881] "light"     "light"     "light"     "circle"    "unknown"   "circle"   
[68887] "light"     "light"     "teardrop"  "light"     "light"     "light"    
[68893] "sphere"    "light"     "light"     "oval"      "light"     "unknown"  
[68899] "sphere"    "circle"    "light"     "oval"      "circle"    "light"    
[68905] "oval"      NA          "other"     "triangle"  "fireball"  "unknown"  
[68911] "triangle"  "light"     "other"     "fireball"  "light"     "light"    
[68917] "fireball"  "fireball"  "light"     "fireball"  "circle"    "oval"     
[68923] "fireball"  "sphere"    "light"     "other"     "light"     "unknown"  
[68929] "other"     "fireball"  "light"     "fireball"  "oval"      "other"    
[68935] "circle"    "oval"      "formation" "diamond"   "sphere"    "other"    
[68941] "sphere"    "circle"    "light"     "fireball"  "fireball"  "fireball" 
[68947] "fireball"  "light"     "light"     "rectangle" "fireball"  "circle"   
[68953] "sphere"    "fireball"  "other"     "circle"    "fireball"  "circle"   
[68959] "fireball"  "circle"    "circle"    "fireball"  "sphere"    "fireball" 
[68965] "fireball"  "light"     "fireball"  "light"     "sphere"    "sphere"   
[68971] "other"     "circle"    "unknown"   "oval"      "sphere"    "light"    
[68977] "disk"      "circle"    "circle"    "oval"      "light"     "fireball" 
[68983] "sphere"    "fireball"  "fireball"  "sphere"    "unknown"   "cigar"    
[68989] "circle"    "triangle"  "light"     "teardrop"  "triangle"  "light"    
[68995] "circle"    "circle"    "teardrop"  "circle"    "light"     "fireball" 
[69001] "disk"      "rectangle" "unknown"   "teardrop"  "sphere"    "other"    
[69007] "fireball"  "light"     "other"     "fireball"  "circle"    "sphere"   
[69013] "circle"    "sphere"    "sphere"    "changing"  "circle"    "fireball" 
[69019] "fireball"  "fireball"  "fireball"  "fireball"  "light"     "circle"   
[69025] "cylinder"  "fireball"  "circle"    "circle"    "circle"    "fireball" 
[69031] "fireball"  "unknown"   "unknown"   "other"     "light"     "fireball" 
[69037] "other"     "disk"      "light"     "unknown"   "fireball"  "formation"
[69043] "oval"      "triangle"  "fireball"  "formation" "light"     "fireball" 
[69049] "light"     "fireball"  NA          "disk"      "fireball"  "teardrop" 
[69055] "fireball"  "fireball"  "fireball"  "fireball"  "cylinder"  "circle"   
[69061] "fireball"  "light"     "oval"      "sphere"    "sphere"    "unknown"  
[69067] "fireball"  "fireball"  "unknown"   "fireball"  "other"     "circle"   
[69073] "light"     "rectangle" "circle"    "cylinder"  "circle"    "triangle" 
[69079] "triangle"  "triangle"  "circle"    "other"     "fireball"  "triangle" 
[69085] "circle"    "sphere"    "fireball"  "sphere"    "light"     "sphere"   
[69091] "sphere"    "rectangle" "fireball"  "light"     "light"     "flash"    
[69097] "circle"    "light"     "unknown"   "fireball"  NA          "changing" 
[69103] "light"     "cigar"     "circle"    "fireball"  "teardrop"  "fireball" 
[69109] "fireball"  "unknown"   "unknown"   "circle"    "light"     "oval"     
[69115] "fireball"  NA          "circle"    "cylinder"  "triangle"  "triangle" 
[69121] "triangle"  "fireball"  "fireball"  "unknown"   "light"     "disk"     
[69127] "fireball"  "disk"      "disk"      "light"     "light"     "sphere"   
[69133] "light"     "circle"    "circle"    "triangle"  "fireball"  "unknown"  
[69139] "circle"    "light"     "triangle"  "light"     "fireball"  "fireball" 
[69145] "circle"    "light"     NA          "light"     "triangle"  "sphere"   
[69151] "light"     "fireball"  "other"     "sphere"    "fireball"  "sphere"   
[69157] "fireball"  "light"     "circle"    "fireball"  "circle"    "fireball" 
[69163] "cylinder"  "triangle"  "sphere"    "fireball"  "light"     "triangle" 
[69169] "circle"    "light"     "disk"      "circle"    "fireball"  "light"    
[69175] "egg"       "light"     "triangle"  "circle"    "fireball"  "circle"   
[69181] "cigar"     "other"     "fireball"  "light"     "circle"    "other"    
[69187] "fireball"  "fireball"  "circle"    "light"     "changing"  "light"    
[69193] "unknown"   "light"     "light"     "fireball"  "sphere"    "light"    
[69199] "circle"    "oval"      "oval"      "light"     "teardrop"  "fireball" 
[69205] "light"     "fireball"  "circle"    "circle"    "circle"    "light"    
[69211] "light"     "light"     "circle"    "light"     "changing"  "circle"   
[69217] "circle"    "light"     "sphere"    "triangle"  "fireball"  "light"    
[69223] "fireball"  "oval"      "light"     "fireball"  "oval"      "fireball" 
[69229] "oval"      "circle"    "disk"      "light"     "fireball"  "sphere"   
[69235] "oval"      "sphere"    "fireball"  "sphere"    "fireball"  "fireball" 
[69241] "sphere"    "light"     "disk"      "light"     "circle"    "light"    
[69247] "fireball"  "formation" "fireball"  "circle"    "fireball"  "fireball" 
[69253] "sphere"    "light"     "circle"    "triangle"  "formation" "oval"     
[69259] "fireball"  "circle"    "fireball"  "fireball"  "changing"  "disk"     
[69265] "sphere"    "formation" "disk"      "circle"    "flash"     "triangle" 
[69271] "light"     "fireball"  "fireball"  "sphere"    "disk"      "fireball" 
[69277] "circle"    "light"     "light"     "changing"  "other"     "other"    
[69283] "teardrop"  "cylinder"  "fireball"  "cylinder"  "egg"       "circle"   
[69289] "sphere"    "other"     "fireball"  "fireball"  "circle"    "disk"     
[69295] "oval"      "sphere"    "light"     "fireball"  "sphere"    "light"    
[69301] "circle"    "fireball"  "oval"      "light"     "triangle"  "light"    
[69307] "circle"    "fireball"  "fireball"  "light"     "circle"    "fireball" 
[69313] "circle"    "sphere"    "fireball"  "circle"    "light"     "cylinder" 
[69319] "circle"    "diamond"   "light"     "cigar"     "fireball"  "fireball" 
[69325] "fireball"  "circle"    "fireball"  "oval"      "chevron"   "fireball" 
[69331] "fireball"  "light"     "fireball"  "sphere"    "circle"    "circle"   
[69337] "fireball"  "disk"      "fireball"  "fireball"  "triangle"  "fireball" 
[69343] "oval"      "light"     "light"     "circle"    "fireball"  "light"    
[69349] "fireball"  "circle"    "fireball"  "fireball"  "sphere"    "sphere"   
[69355] "sphere"    "circle"    "circle"    "light"     "other"     "circle"   
[69361] "fireball"  "fireball"  "oval"      "oval"      "circle"    "circle"   
[69367] "disk"      "sphere"    "triangle"  "light"     "light"     "changing" 
[69373] "fireball"  "formation" "light"     "circle"    "light"     "triangle" 
[69379] "fireball"  "oval"      "flash"     "fireball"  "fireball"  "light"    
[69385] "fireball"  "circle"    "fireball"  "fireball"  "diamond"   "light"    
[69391] "light"     "circle"    "circle"    "fireball"  "disk"      "light"    
[69397] "circle"    "circle"    "sphere"    "light"     "fireball"  "fireball" 
[69403] "disk"      "disk"      "fireball"  "fireball"  "triangle"  "other"    
[69409] "other"     "circle"    "oval"      "cigar"     "light"     "circle"   
[69415] "circle"    "sphere"    "other"     "sphere"    "fireball"  "circle"   
[69421] "circle"    "oval"      "sphere"    "fireball"  "fireball"  "light"    
[69427] "fireball"  "light"     "circle"    "egg"       "fireball"  "fireball" 
[69433] "diamond"   "fireball"  "fireball"  "fireball"  "sphere"    "fireball" 
[69439] "sphere"    NA          "fireball"  "light"     "unknown"   "sphere"   
[69445] "circle"    "fireball"  "unknown"   "other"     "sphere"    "fireball" 
[69451] "fireball"  "fireball"  "light"     "fireball"  "fireball"  "oval"     
[69457] "unknown"   "unknown"   "light"     "unknown"   "diamond"   "circle"   
[69463] "light"     "light"     "triangle"  "light"     "unknown"   "light"    
[69469] "light"     "circle"    "sphere"    "flash"     "other"     "unknown"  
[69475] "triangle"  "circle"    "light"     "sphere"    "light"     "teardrop" 
[69481] "triangle"  "other"     "flash"     "unknown"   "cylinder"  "cylinder" 
[69487] "light"     "formation" "fireball"  "other"     "egg"       "light"    
[69493] "circle"    "light"     "light"     NA          "sphere"    "fireball" 
[69499] NA          "sphere"    "rectangle" "fireball"  "circle"    "circle"   
[69505] "sphere"    "unknown"   "oval"      "fireball"  "fireball"  "sphere"   
[69511] "sphere"    "circle"    "diamond"   "circle"    "fireball"  "sphere"   
[69517] "oval"      "fireball"  "egg"       "circle"    "circle"    "fireball" 
[69523] "light"     "sphere"    "changing"  "triangle"  "sphere"    "circle"   
[69529] "triangle"  "circle"    "circle"    "oval"      "sphere"    "circle"   
[69535] "light"     "other"     "oval"      "triangle"  "fireball"  "cylinder" 
[69541] "circle"    "fireball"  "formation" "triangle"  "circle"    "fireball" 
[69547] "fireball"  "circle"    "other"     "light"     "triangle"  "unknown"  
[69553] "light"     "triangle"  "light"     "light"     "sphere"    "fireball" 
[69559] "circle"    "fireball"  "fireball"  "light"     "teardrop"  "circle"   
[69565] "unknown"   "light"     "light"     "oval"      "unknown"   "circle"   
[69571] "fireball"  "sphere"    "other"     "oval"      "light"     "light"    
[69577] "light"     "oval"      "circle"    "fireball"  "circle"    "sphere"   
[69583] "triangle"  "light"     "fireball"  "fireball"  "unknown"   "unknown"  
[69589] "fireball"  "circle"    "unknown"   "light"     "light"     "light"    
[69595] "disk"      "formation" "formation" "fireball"  "light"     "light"    
[69601] "fireball"  "circle"    "light"     "circle"    "light"     "circle"   
[69607] "chevron"   "light"     "fireball"  "other"     "fireball"  "light"    
[69613] "other"     NA          "fireball"  "light"     "sphere"    "light"    
[69619] "sphere"    "other"     "circle"    "changing"  "triangle"  "triangle" 
[69625] "unknown"   "circle"    "light"     "fireball"  "fireball"  "other"    
[69631] "fireball"  "fireball"  "sphere"    "flash"     "oval"      "sphere"   
[69637] "sphere"    "light"     "light"     "oval"      "cylinder"  "disk"     
[69643] "triangle"  "light"     "triangle"  "disk"      "disk"      "disk"     
[69649] NA          "sphere"    "triangle"  "triangle"  "disk"      "chevron"  
[69655] "fireball"  "disk"      NA          "sphere"    "changing"  "triangle" 
[69661] "cone"      "unknown"   "light"     "circle"    "disk"      "light"    
[69667] "light"     "triangle"  "light"     "triangle"  "diamond"   "sphere"   
[69673] "cigar"     "other"     "disk"      NA          "light"     "flash"    
[69679] "formation" "rectangle" "unknown"   "fireball"  "light"     "circle"   
[69685] "oval"      "unknown"   "light"     "light"     "triangle"  "teardrop" 
[69691] "sphere"    "sphere"    "disk"      "light"     "egg"       "formation"
[69697] "sphere"    "triangle"  "light"     "changing"  "unknown"   "other"    
[69703] "light"     "fireball"  NA          "cigar"     "teardrop"  "unknown"  
[69709] "sphere"    "light"     "cylinder"  "oval"      "cigar"     "other"    
[69715] "other"     "oval"      "other"     "egg"       "teardrop"  "light"    
[69721] "light"     "diamond"   "light"     "light"     "flash"     "chevron"  
[69727] "light"     "light"     "circle"    "formation" "light"     "light"    
[69733] "chevron"   "triangle"  "unknown"   "light"     "triangle"  "disk"     
[69739] "light"     "light"     NA          "unknown"   "teardrop"  "disk"     
[69745] "cigar"     "cross"     "sphere"    "oval"      "cylinder"  "other"    
[69751] "circle"    "triangle"  "flash"     "teardrop"  "circle"    "unknown"  
[69757] "triangle"  "light"     "rectangle" "oval"      "unknown"   "changing" 
[69763] "light"     "light"     "light"     "circle"    "light"     "circle"   
[69769] "disk"      "unknown"   "light"     "flash"     "unknown"   "disk"     
[69775] "oval"      "circle"    "formation" NA          "circle"    "light"    
[69781] "sphere"    "triangle"  "triangle"  "circle"    "other"     "flash"    
[69787] "triangle"  "light"     "disk"      "rectangle" "teardrop"  "light"    
[69793] "light"     "light"     "light"     "light"     "triangle"  "disk"     
[69799] "disk"      "oval"      "disk"      "light"     "light"     "light"    
[69805] "other"     "fireball"  "unknown"   "disk"      "light"     "sphere"   
[69811] "light"     "light"     "changing"  "other"     "light"     "sphere"   
[69817] "triangle"  "disk"      "fireball"  "changing"  "circle"    "unknown"  
[69823] "unknown"   "other"     "fireball"  "sphere"    "sphere"    "circle"   
[69829] "triangle"  "diamond"   "light"     "light"     "light"     "oval"     
[69835] "other"     "sphere"    "oval"      "fireball"  "unknown"   "light"    
[69841] "light"     "light"     "triangle"  "oval"      "disk"      "disk"     
[69847] "oval"      "changing"  "egg"       "light"     "other"     "sphere"   
[69853] "cigar"     "cylinder"  "disk"      "rectangle" "cylinder"  "circle"   
[69859] "other"     "circle"    "sphere"    "oval"      "unknown"   "disk"     
[69865] "disk"      "light"     "light"     "fireball"  "light"     "fireball" 
[69871] "circle"    "light"     "sphere"    "disk"      "light"     "oval"     
[69877] "circle"    "light"     "triangle"  "changing"  "triangle"  "fireball" 
[69883] "disk"      NA          "oval"      "sphere"    "sphere"    "oval"     
[69889] "unknown"   "rectangle" "egg"       "sphere"    "circle"    "circle"   
[69895] "triangle"  "oval"      "unknown"   "triangle"  "fireball"  "sphere"   
[69901] "fireball"  "light"     "changing"  "sphere"    "cigar"     "fireball" 
[69907] "circle"    "fireball"  "other"     "fireball"  "light"     "circle"   
[69913] "light"     "circle"    "fireball"  "circle"    "formation" "fireball" 
[69919] "fireball"  "circle"    "fireball"  "fireball"  "fireball"  "oval"     
[69925] "sphere"    "sphere"    "triangle"  "unknown"   "fireball"  "circle"   
[69931] "light"     "cross"     "cross"     "sphere"    "sphere"    "fireball" 
[69937] "fireball"  "fireball"  "fireball"  "unknown"   "oval"      "fireball" 
[69943] "circle"    "light"     "light"     "fireball"  "light"     "light"    
[69949] "circle"    "circle"    "sphere"    "fireball"  "disk"      "fireball" 
[69955] "circle"    "changing"  "circle"    "circle"    "sphere"    "circle"   
[69961] "circle"    "unknown"   "changing"  "triangle"  "fireball"  "light"    
[69967] "sphere"    "triangle"  "circle"    "triangle"  "circle"    "light"    
[69973] "changing"  "fireball"  NA          "other"     "disk"      "sphere"   
[69979] "light"     "triangle"  "oval"      "light"     "sphere"    "oval"     
[69985] "light"     "flash"     "cigar"     "other"     "egg"       "egg"      
[69991] "cigar"     "sphere"    "cigar"     "sphere"    "triangle"  "chevron"  
[69997] "flash"     "triangle"  "cross"     "sphere"    "unknown"   "disk"     
[70003] "changing"  "cylinder"  "cylinder"  "cylinder"  "cylinder"  "triangle" 
[70009] "cigar"     "light"     "other"     "formation" "light"     "light"    
[70015] "rectangle" "oval"      "sphere"    "circle"    "sphere"    "other"    
[70021] "triangle"  "triangle"  "disk"      "circle"    "fireball"  "triangle" 
[70027] "fireball"  "other"     "triangle"  "fireball"  "triangle"  "circle"   
[70033] "circle"    "sphere"    "unknown"   "rectangle" "light"     "other"    
[70039] "unknown"   "formation" "cylinder"  "disk"      "circle"    "disk"     
[70045] "circle"    "diamond"   "egg"       "sphere"    "light"     "unknown"  
[70051] "triangle"  "circle"    "unknown"   "triangle"  "triangle"  "triangle" 
[70057] "triangle"  "rectangle" "fireball"  "unknown"   "light"     "circle"   
[70063] "changing"  "rectangle" "light"     "light"     "oval"      "cigar"    
[70069] "unknown"   "light"     "fireball"  "cigar"     "light"     "other"    
[70075] "unknown"   "light"     "light"     "light"     "light"     "circle"   
[70081] "circle"    "other"     "light"     "cigar"     "rectangle" "light"    
[70087] "unknown"   "unknown"   "light"     "fireball"  "triangle"  "circle"   
[70093] "disk"      "other"     "other"     "other"     "light"     "light"    
[70099] "circle"    "other"     "circle"    "light"     NA          "changing" 
[70105] "oval"      "rectangle" "light"     "flash"     "flash"     NA         
[70111] "egg"       "light"     "light"     "rectangle" "sphere"    "fireball" 
[70117] "triangle"  "unknown"   "triangle"  "light"     "light"     "fireball" 
[70123] "light"     "light"     "sphere"    "circle"    "other"     "light"    
[70129] "light"     "unknown"   "light"     "light"     "light"     "light"    
[70135] "changing"  "light"     NA          "light"     "light"     "circle"   
[70141] "sphere"    "circle"    "sphere"    "circle"    "light"     "light"    
[70147] "sphere"    "fireball"  "unknown"   "sphere"    "circle"    "diamond"  
[70153] "unknown"   "fireball"  "light"     "circle"    "circle"    "unknown"  
[70159] "sphere"    "triangle"  "formation" "fireball"  "light"     "fireball" 
[70165] "sphere"    "fireball"  "light"     NA          "light"     "circle"   
[70171] "formation" "fireball"  "changing"  "fireball"  "triangle"  "unknown"  
[70177] "light"     "circle"    "circle"    "formation" "fireball"  "light"    
[70183] "circle"    "fireball"  "triangle"  "fireball"  "unknown"   "fireball" 
[70189] "triangle"  "sphere"    "disk"      "fireball"  "oval"      "sphere"   
[70195] "sphere"    "oval"      "cylinder"  "formation" "teardrop"  NA         
[70201] "formation" "light"     "circle"    "light"     "light"     "light"    
[70207] "oval"      "oval"      "light"     "fireball"  "circle"    "circle"   
[70213] "circle"    "circle"    "circle"    "unknown"   "circle"    "light"    
[70219] "sphere"    "light"     "changing"  "formation" "unknown"   "triangle" 
[70225] "triangle"  "oval"      "triangle"  "light"     "circle"    "fireball" 
[70231] "sphere"    "flash"     "light"     "circle"    "light"     "light"    
[70237] "light"     "light"     "circle"    "fireball"  "light"     "formation"
[70243] "circle"    "circle"    "unknown"   "light"     "fireball"  "sphere"   
[70249] "fireball"  "circle"    "unknown"   "unknown"   "triangle"  "light"    
[70255] "light"     "circle"    "triangle"  "fireball"  "fireball"  "fireball" 
[70261] "circle"    "flash"     "formation" NA          "oval"      NA         
[70267] "circle"    "disk"      "unknown"   "formation" "disk"      "rectangle"
[70273] "light"     "formation" "cylinder"  "light"     "light"     "unknown"  
[70279] "disk"      "triangle"  "disk"      "other"     "triangle"  "light"    
[70285] "other"     "sphere"    "fireball"  "disk"      "disk"      "disk"     
[70291] "disk"      "circle"    "light"     "cigar"     "other"     "sphere"   
[70297] "other"     "triangle"  "unknown"   "triangle"  "diamond"   "triangle" 
[70303] "other"     "formation" "egg"       "other"     "disk"      "sphere"   
[70309] "rectangle" "rectangle" "triangle"  "triangle"  "triangle"  "other"    
[70315] "light"     "disk"      "cylinder"  "light"     "rectangle" "fireball" 
[70321] "triangle"  NA          "oval"      NA          "cigar"     "rectangle"
[70327] NA          "changing"  "circle"    "unknown"   "triangle"  "egg"      
[70333] "formation" "sphere"    "other"     "oval"      "sphere"    "light"    
[70339] NA          "unknown"   "unknown"   "light"     "rectangle" "light"    
[70345] "disk"      "light"     "changing"  "fireball"  "fireball"  "flash"    
[70351] "light"     "egg"       "fireball"  "unknown"   "sphere"    "light"    
[70357] "unknown"   "triangle"  "oval"      "light"     "other"     "light"    
[70363] "light"     "cone"      "light"     "circle"    "circle"    "light"    
[70369] "oval"      "fireball"  "light"     "oval"      "light"     "light"    
[70375] "sphere"    "other"     "fireball"  "light"     "light"     "light"    
[70381] NA          "light"     "rectangle" "fireball"  "light"     "light"    
[70387] "light"     "oval"      "light"     "circle"    "disk"      "diamond"  
[70393] "circle"    "rectangle" "disk"      "circle"    "light"     "chevron"  
[70399] "formation" "disk"      "light"     "rectangle" "unknown"   "light"    
[70405] "triangle"  "triangle"  "cigar"     "formation" "light"     "circle"   
[70411] "cross"     "rectangle" "cigar"     "circle"    "other"     "fireball" 
[70417] "other"     "light"     "rectangle" "light"     "fireball"  "light"    
[70423] "sphere"    "sphere"    "other"     "oval"      "sphere"    "unknown"  
[70429] "light"     "cylinder"  "unknown"   "fireball"  "fireball"  "unknown"  
[70435] "light"     "light"     "fireball"  "light"     "other"     "fireball" 
[70441] "circle"    "cylinder"  "rectangle" "triangle"  "unknown"   "other"    
[70447] "triangle"  "cigar"     "triangle"  "unknown"   NA          "light"    
[70453] "other"     "cigar"     "cigar"     "changing"  "flash"     "cylinder" 
[70459] "disk"      "sphere"    "light"     "circle"    "other"     "circle"   
[70465] "triangle"  "unknown"   "sphere"    "cylinder"  "sphere"    "unknown"  
[70471] "sphere"    "cigar"     "circle"    "sphere"    "circle"    "circle"   
[70477] "circle"    "disk"      "circle"    "fireball"  "fireball"  "oval"     
[70483] "unknown"   "other"     "light"     "circle"    "fireball"  "oval"     
[70489] "sphere"    "unknown"   "triangle"  "chevron"   "unknown"   "unknown"  
[70495] "diamond"   "other"     "triangle"  "changing"  "other"     "fireball" 
[70501] "triangle"  "unknown"   "triangle"  "diamond"   "disk"      "triangle" 
[70507] "light"     "light"     "other"     "light"     "light"     "oval"     
[70513] "cigar"     "cigar"     "circle"    "egg"       "rectangle" "circle"   
[70519] "other"     "triangle"  "light"     "light"     "light"     "sphere"   
[70525] "sphere"    "light"     "other"     "sphere"    "light"     "triangle" 
[70531] NA          "formation" "oval"      "fireball"  "teardrop"  NA         
[70537] NA          "changing"  "light"     "triangle"  "unknown"   "light"    
[70543] "cylinder"  "fireball"  "formation" "circle"    "triangle"  "light"    
[70549] "flash"     "light"     "circle"    "other"     "diamond"   "unknown"  
[70555] "circle"    "oval"      "sphere"    "changing"  "circle"    "fireball" 
[70561] "cigar"     "cylinder"  "sphere"    "triangle"  "light"     "triangle" 
[70567] "light"     "light"     "sphere"    "other"     "fireball"  "cigar"    
[70573] "light"     "unknown"   "formation" "triangle"  NA          "sphere"   
[70579] "fireball"  "fireball"  "fireball"  "fireball"  "light"     "light"    
[70585] "fireball"  "sphere"    "circle"    "unknown"   "circle"    "circle"   
[70591] "fireball"  "circle"    "circle"    "triangle"  "fireball"  "oval"     
[70597] "oval"      "sphere"    "fireball"  "fireball"  "circle"    "fireball" 
[70603] "oval"      "other"     "fireball"  "light"     "fireball"  "light"    
[70609] "light"     "rectangle" "oval"      "fireball"  "fireball"  "formation"
[70615] "fireball"  "oval"      "light"     "circle"    "sphere"    "disk"     
[70621] "circle"    "formation" "circle"    "fireball"  "flash"     "circle"   
[70627] "light"     "formation" "unknown"   "circle"    "circle"    "sphere"   
[70633] "unknown"   "circle"    "light"     "triangle"  "sphere"    "circle"   
[70639] "disk"      "disk"      NA          "light"     NA          "cigar"    
[70645] "cigar"     "other"     "disk"      "disk"      "light"     "cigar"    
[70651] "cigar"     "light"     "light"     "fireball"  "cylinder"  "oval"     
[70657] "fireball"  "triangle"  "circle"    "disk"      "unknown"   "other"    
[70663] "triangle"  "rectangle" "changing"  "other"     "circle"    "other"    
[70669] "sphere"    "triangle"  "changing"  "light"     "light"     "light"    
[70675] "disk"      "unknown"   "unknown"   "fireball"  "light"     "unknown"  
[70681] "triangle"  "unknown"   "oval"      "disk"      "triangle"  "other"    
[70687] "triangle"  "disk"      "disk"      "sphere"    "flash"     "circle"   
[70693] "unknown"   "triangle"  "triangle"  "triangle"  "fireball"  "sphere"   
[70699] "other"     "unknown"   "other"     "disk"      "disk"      "circle"   
[70705] "disk"      "circle"    "other"     "triangle"  "oval"      "disk"     
[70711] "oval"      "light"     "sphere"    "disk"      NA          "other"    
[70717] NA          "sphere"    "triangle"  "oval"      "disk"      "cross"    
[70723] "diamond"   "light"     "other"     "other"     "triangle"  "disk"     
[70729] "disk"      "rectangle" "egg"       "cigar"     "sphere"    "circle"   
[70735] "light"     "triangle"  "light"     "cigar"     "changing"  "formation"
[70741] "circle"    "oval"      "disk"      "light"     "sphere"    "sphere"   
[70747] "light"     "light"     "formation" "light"     "oval"      "unknown"  
[70753] "teardrop"  "sphere"    "light"     "disk"      "circle"    "fireball" 
[70759] "sphere"    "light"     "fireball"  "light"     "sphere"    "rectangle"
[70765] "light"     "unknown"   NA          "sphere"    "light"     "unknown"  
[70771] "light"     "changing"  "rectangle" "light"     "circle"    "other"    
[70777] "rectangle" "cigar"     "changing"  "other"     "light"     "triangle" 
[70783] "flash"     "circle"    "triangle"  "sphere"    "light"     "unknown"  
[70789] "fireball"  "other"     "other"     "cylinder"  "circle"    "light"    
[70795] "fireball"  "disk"      "egg"       "triangle"  "fireball"  "diamond"  
[70801] "sphere"    "light"     "circle"    "circle"    "light"     "light"    
[70807] "flash"     "sphere"    "other"     "fireball"  "light"     "circle"   
[70813] "unknown"   "triangle"  "light"     "disk"      "diamond"   "fireball" 
[70819] "cylinder"  "flash"     "fireball"  "sphere"    "formation" "sphere"   
[70825] "fireball"  "circle"    "fireball"  "fireball"  "circle"    "changing" 
[70831] "sphere"    "fireball"  "circle"    "fireball"  "light"     "sphere"   
[70837] "sphere"    "sphere"    "diamond"   "fireball"  "light"     "unknown"  
[70843] "changing"  "fireball"  "disk"      "light"     "circle"    "light"    
[70849] "light"     "fireball"  "circle"    "circle"    "circle"    "other"    
[70855] "rectangle" "light"     "fireball"  "circle"    "oval"      "disk"     
[70861] "disk"      "other"     "cigar"     "triangle"  "triangle"  "disk"     
[70867] "fireball"  "circle"    "triangle"  "chevron"   "triangle"  "triangle" 
[70873] "other"     NA          NA          "triangle"  "light"     "triangle" 
[70879] "triangle"  "disk"      NA          "sphere"    "cross"     "fireball" 
[70885] "light"     "light"     "light"     "circle"    "fireball"  "light"    
[70891] "other"     "cylinder"  "light"     "unknown"   "unknown"   "oval"     
[70897] "other"     "oval"      "light"     "unknown"   "sphere"    "light"    
[70903] "disk"      "circle"    "triangle"  NA          "light"     "other"    
[70909] "rectangle" "light"     "circle"    "triangle"  "unknown"   "oval"     
[70915] "triangle"  "triangle"  "changing"  "cigar"     "triangle"  "egg"      
[70921] "circle"    "light"     "light"     "changing"  "triangle"  "triangle" 
[70927] "formation" "unknown"   "other"     "light"     "flash"     "oval"     
[70933] NA          "unknown"   "unknown"   "light"     "triangle"  "light"    
[70939] "circle"    "light"     "light"     "unknown"   "oval"      "triangle" 
[70945] "other"     "light"     "changing"  "sphere"    "light"     "changing" 
[70951] "disk"      "teardrop"  "unknown"   "teardrop"  "cigar"     "formation"
[70957] "formation" "diamond"   "light"     "triangle"  "disk"      "light"    
[70963] "changing"  "light"     "light"     "disk"      "light"     "cylinder" 
[70969] "light"     "circle"    "unknown"   "triangle"  "disk"      "unknown"  
[70975] "light"     "unknown"   "disk"      "light"     "other"     "oval"     
[70981] "oval"      "triangle"  "cigar"     "unknown"   "changing"  "light"    
[70987] "circle"    "light"     "fireball"  "changing"  "cigar"     "egg"      
[70993] "light"     "disk"      "light"     "disk"      "circle"    "triangle" 
[70999] "unknown"   "light"     "diamond"   "light"     "sphere"    "light"    
[71005] "other"     "formation" "oval"      NA          "triangle"  "light"    
[71011] "circle"    "light"     "cylinder"  "circle"    "light"     "cigar"    
[71017] "cylinder"  "disk"      "disk"      "other"     "oval"      NA         
[71023] "triangle"  "disk"      "oval"      "flash"     "flash"     "triangle" 
[71029] "cross"     "circle"    "sphere"    "light"     "oval"      "unknown"  
[71035] "flash"     "fireball"  "light"     "formation" "flash"     NA         
[71041] "light"     "fireball"  "sphere"    "triangle"  "oval"      "other"    
[71047] "circle"    "circle"    "light"     "fireball"  "other"     "rectangle"
[71053] "circle"    "formation" "fireball"  "fireball"  "other"     "oval"     
[71059] "light"     "light"     "sphere"    "circle"    "circle"    "other"    
[71065] "unknown"   "sphere"    "egg"       "sphere"    "circle"    "disk"     
[71071] "chevron"   "disk"      "rectangle" "fireball"  "circle"    "sphere"   
[71077] "cigar"     "cigar"     "formation" "other"     "unknown"   "fireball" 
[71083] "fireball"  "fireball"  "triangle"  "circle"    "cigar"     "cigar"    
[71089] "other"     "sphere"    "light"     "sphere"    "unknown"   "circle"   
[71095] "light"     "disk"      "circle"    "cigar"     "cigar"     "unknown"  
[71101] "other"     "sphere"    "oval"      "fireball"  "light"     "disk"     
[71107] "circle"    "unknown"   "diamond"   "other"     "disk"      "cylinder" 
[71113] "oval"      "oval"      "rectangle" "circle"    "light"     "light"    
[71119] "cross"     "light"     "light"     "disk"      "oval"      "disk"     
[71125] "light"     "triangle"  "light"     "disk"      "disk"      "disk"     
[71131] "disk"      "disk"      "unknown"   "sphere"    "light"     "light"    
[71137] "oval"      "light"     "other"     "other"     "circle"    "light"    
[71143] "triangle"  "triangle"  "triangle"  "cylinder"  "disk"      "other"    
[71149] "unknown"   "triangle"  "light"     "light"     "light"     "light"    
[71155] "triangle"  "sphere"    "disk"      "light"     "disk"      "triangle" 
[71161] "fireball"  "unknown"   "chevron"   "light"     NA          "rectangle"
[71167] "sphere"    "formation" "triangle"  "sphere"    "light"     "light"    
[71173] "other"     "other"     "light"     "light"     "fireball"  "sphere"   
[71179] "other"     "disk"      "unknown"   "light"     "light"     "circle"   
[71185] "light"     "triangle"  "triangle"  "light"     "changing"  "triangle" 
[71191] "other"     "light"     "cylinder"  "triangle"  "sphere"    "light"    
[71197] "unknown"   "other"     "egg"       "light"     "other"     "disk"     
[71203] "light"     "formation" "changing"  "formation" "formation" "light"    
[71209] "other"     "light"     "cone"      "fireball"  "light"     "unknown"  
[71215] "sphere"    "cigar"     "diamond"   "unknown"   "fireball"  "light"    
[71221] NA          "other"     "diamond"   "unknown"   "circle"    "triangle" 
[71227] "unknown"   "disk"      "disk"      "light"     "triangle"  "light"    
[71233] "fireball"  "fireball"  "other"     "disk"      "egg"       "circle"   
[71239] "cylinder"  "circle"    "light"     "cylinder"  "light"     "fireball" 
[71245] "light"     "rectangle" "disk"      "light"     "light"     "light"    
[71251] "fireball"  "formation" "changing"  NA          "unknown"   "oval"     
[71257] "light"     "circle"    "sphere"    "diamond"   "light"     "triangle" 
[71263] "light"     "light"     "other"     "fireball"  "triangle"  NA         
[71269] "triangle"  "sphere"    "unknown"   "triangle"  "unknown"   "sphere"   
[71275] "cigar"     "triangle"  "light"     "light"     "light"     "oval"     
[71281] "unknown"   "circle"    "light"     "disk"      "triangle"  "flash"    
[71287] "egg"       "triangle"  "light"     "other"     "flash"     "cylinder" 
[71293] "disk"      "disk"      "light"     "light"     "light"     "light"    
[71299] "disk"      "sphere"    "light"     "flash"     "cylinder"  "egg"      
[71305] "triangle"  "rectangle" NA          NA          "sphere"    "circle"   
[71311] "triangle"  "light"     "triangle"  "circle"    "flash"     "formation"
[71317] "changing"  "cigar"     "cigar"     "other"     "triangle"  "light"    
[71323] "triangle"  "disk"      "formation" "sphere"    "oval"      "unknown"  
[71329] "light"     "formation" "light"     "cigar"     "light"     "light"    
[71335] "flash"     "circle"    NA          "cigar"     "sphere"    "cigar"    
[71341] "other"     "light"     "fireball"  NA          "other"     "rectangle"
[71347] "other"     "light"     "chevron"   "chevron"   "other"     "fireball" 
[71353] "light"     "other"     "diamond"   "circle"    "triangle"  "circle"   
[71359] "oval"      "other"     "triangle"  "unknown"   "other"     "other"    
[71365] "diamond"   "oval"      "flash"     "disk"      "circle"    "flash"    
[71371] "light"     "light"     "light"     "light"     "light"     "fireball" 
[71377] "triangle"  "light"     "other"     "sphere"    "light"     "changing" 
[71383] "light"     "light"     "sphere"    "disk"      "circle"    "disk"     
[71389] "egg"       "oval"      "light"     "other"     "light"     "circle"   
[71395] "cigar"     "formation" "light"     "other"     "fireball"  "oval"     
[71401] "circle"    "circle"    "fireball"  "triangle"  "light"     "circle"   
[71407] "sphere"    "formation" "fireball"  "circle"    "circle"    "sphere"   
[71413] "other"     "circle"    "light"     "light"     "triangle"  "light"    
[71419] "fireball"  "fireball"  "unknown"   "flash"     "light"     "oval"     
[71425] "light"     "triangle"  "other"     "disk"      "fireball"  "fireball" 
[71431] "circle"    "fireball"  "other"     "formation" "circle"    "formation"
[71437] "light"     "oval"      "light"     "light"     "chevron"   "fireball" 
[71443] "rectangle" "light"     "triangle"  "fireball"  "fireball"  "teardrop" 
[71449] "disk"      "circle"    "oval"      "oval"      "circle"    "light"    
[71455] "sphere"    "light"     "triangle"  "fireball"  "light"     NA         
[71461] "other"     "fireball"  "fireball"  "sphere"    "fireball"  "formation"
[71467] "triangle"  "oval"      "other"     "triangle"  "light"     "circle"   
[71473] "sphere"    "oval"      "circle"    "disk"      "cross"     "triangle" 
[71479] "triangle"  "unknown"   "unknown"   "formation" NA          "rectangle"
[71485] "egg"       "rectangle" "changing"  NA          NA          NA         
[71491] "light"     "light"     "disk"      "unknown"   "light"     "cylinder" 
[71497] "rectangle" "triangle"  "egg"       "light"     "circle"    "cone"     
[71503] "circle"    "other"     "formation" NA          "sphere"    "triangle" 
[71509] "cigar"     "formation" "rectangle" "unknown"   "circle"    "formation"
[71515] "light"     "other"     "light"     "cigar"     "other"     "other"    
[71521] "sphere"    "light"     "triangle"  "light"     NA          "light"    
[71527] "light"     "light"     "disk"      "chevron"   "changing"  "circle"   
[71533] "disk"      "sphere"    "sphere"    "circle"    "light"     "unknown"  
[71539] "light"     "light"     "triangle"  "triangle"  "other"     "light"    
[71545] "light"     "light"     "oval"      "other"     "triangle"  "other"    
[71551] "light"     "disk"      "disk"      "disk"      "circle"    "cylinder" 
[71557] "light"     "light"     "light"     "light"     "other"     "disk"     
[71563] "cigar"     "disk"      "disk"      "fireball"  "fireball"  "triangle" 
[71569] "triangle"  "other"     "other"     "unknown"   "diamond"   "triangle" 
[71575] "light"     "formation" "unknown"   "light"     NA          "flash"    
[71581] "changing"  "light"     "unknown"   "cross"     "cigar"     "other"    
[71587] "triangle"  "light"     "unknown"   "light"     "light"     "light"    
[71593] "rectangle" NA          "oval"      "unknown"   "triangle"  "light"    
[71599] "fireball"  "rectangle" NA          "circle"    "circle"    "light"    
[71605] "fireball"  "light"     "fireball"  "fireball"  "triangle"  "light"    
[71611] "other"     "unknown"   "other"     "other"     "flash"     "oval"     
[71617] "fireball"  "light"     "light"     "light"     "triangle"  "light"    
[71623] "light"     "light"     "light"     "light"     "triangle"  "light"    
[71629] "other"     "triangle"  "triangle"  "unknown"   NA          "light"    
[71635] "circle"    "circle"    "cylinder"  "egg"       "fireball"  "fireball" 
[71641] "unknown"   "changing"  "diamond"   "cylinder"  "oval"      "circle"   
[71647] "triangle"  "formation" "other"     "triangle"  "formation" "light"    
[71653] "other"     "unknown"   "other"     "rectangle" "triangle"  "triangle" 
[71659] "triangle"  "light"     "light"     "light"     "other"     "sphere"   
[71665] "light"     "disk"      NA          "formation" "light"     "light"    
[71671] "triangle"  "unknown"   "unknown"   "other"     "triangle"  "light"    
[71677] "unknown"   "light"     "light"     "other"     "light"     "light"    
[71683] "circle"    "circle"    "fireball"  "fireball"  "fireball"  "fireball" 
[71689] "formation" "light"     "light"     "light"     "light"     "fireball" 
[71695] "rectangle" "fireball"  "disk"      "fireball"  "fireball"  "rectangle"
[71701] "light"     "circle"    "light"     "cylinder"  "chevron"   "unknown"  
[71707] "sphere"    "fireball"  "circle"    "unknown"   "light"     "cylinder" 
[71713] "formation" "light"     "fireball"  "other"     "light"     "formation"
[71719] "oval"      NA          "triangle"  "unknown"   "triangle"  "fireball" 
[71725] "light"     "light"     "other"     "formation" "unknown"   "light"    
[71731] "circle"    "diamond"   "light"     "light"     "chevron"   "teardrop" 
[71737] "triangle"  "sphere"    "unknown"   "circle"    "diamond"   "light"    
[71743] "circle"    "changing"  "flash"     "triangle"  "formation" "diamond"  
[71749] "circle"    "light"     "flash"     "fireball"  "unknown"   "oval"     
[71755] "circle"    "rectangle" "circle"    "other"     "disk"      "triangle" 
[71761] "unknown"   "circle"    "circle"    "light"     "light"     "fireball" 
[71767] "fireball"  "light"     "light"     "other"     "triangle"  "light"    
[71773] "fireball"  NA          "diamond"   "diamond"   "circle"    "other"    
[71779] "oval"      "fireball"  "disk"      "oval"      "triangle"  "disk"     
[71785] "light"     "sphere"    "unknown"   "disk"      "disk"      "disk"     
[71791] "cylinder"  "disk"      "disk"      "cigar"     "circle"    "disk"     
[71797] "circle"    "disk"      "disk"      "oval"      "triangle"  "unknown"  
[71803] "disk"      "light"     "formation" "circle"    "disk"      "formation"
[71809] "cigar"     "fireball"  "light"     "triangle"  "disk"      "unknown"  
[71815] "sphere"    "sphere"    "light"     "light"     "circle"    "other"    
[71821] "cigar"     "oval"      "disk"      "circle"    "diamond"   "sphere"   
[71827] NA          "triangle"  "cigar"     "other"     "light"     "circle"   
[71833] "light"     "other"     "light"     "other"     "disk"      "unknown"  
[71839] "light"     "oval"      "light"     "unknown"   "unknown"   "other"    
[71845] "light"     "cylinder"  "circle"    "cigar"     "light"     "unknown"  
[71851] "disk"      "triangle"  "formation" "cylinder"  NA          "oval"     
[71857] "triangle"  "cylinder"  "circle"    "cigar"     "circle"    "triangle" 
[71863] "oval"      "circle"    "cigar"     "disk"      "triangle"  "disk"     
[71869] "egg"       "circle"    "cigar"     "cylinder"  "fireball"  "light"    
[71875] "light"     "disk"      "disk"      "unknown"   "disk"      "chevron"  
[71881] "disk"      "cigar"     "other"     "circle"    "triangle"  "chevron"  
[71887] "circle"    "oval"      "sphere"    "oval"      "disk"      "sphere"   
[71893] "light"     "circle"    "formation" "sphere"    "circle"    "other"    
[71899] "other"     "fireball"  "triangle"  "rectangle" NA          "disk"     
[71905] "triangle"  "cigar"     "triangle"  "chevron"   "sphere"    "formation"
[71911] "triangle"  "rectangle" "unknown"   "circle"    NA          "light"    
[71917] "disk"      "unknown"   "sphere"    "triangle"  "sphere"    "cigar"    
[71923] "disk"      "light"     "circle"    "triangle"  "other"     "other"    
[71929] "sphere"    "rectangle" "triangle"  "triangle"  "triangle"  "diamond"  
[71935] "light"     "diamond"   "fireball"  "light"     "disk"      "rectangle"
[71941] "light"     "sphere"    "sphere"    "disk"      "circle"    "circle"   
[71947] "light"     "disk"      "formation" "triangle"  "light"     "disk"     
[71953] "disk"      "oval"      "circle"    "triangle"  "light"     "unknown"  
[71959] "other"     "triangle"  "other"     "disk"      "triangle"  "other"    
[71965] "fireball"  "sphere"    "circle"    "oval"      "cigar"     "circle"   
[71971] "light"     "triangle"  "light"     "triangle"  NA          "light"    
[71977] NA          "flash"     "light"     "triangle"  "light"     "light"    
[71983] "teardrop"  "changing"  "diamond"   "triangle"  "flash"     "light"    
[71989] "sphere"    NA          NA          "triangle"  "disk"      "fireball" 
[71995] "triangle"  "light"     "light"     "fireball"  "triangle"  "sphere"   
[72001] "triangle"  "flash"     "triangle"  "chevron"   "rectangle" "triangle" 
[72007] "other"     NA          "disk"      "light"     "other"     "circle"   
[72013] "sphere"    "disk"      "light"     "light"     "sphere"    "triangle" 
[72019] "sphere"    "light"     "cylinder"  "unknown"   "light"     "light"    
[72025] "other"     "cigar"     "light"     "sphere"    "light"     "cigar"    
[72031] "triangle"  "unknown"   "changing"  "light"     "other"     "disk"     
[72037] "egg"       "disk"      "sphere"    "cigar"     "cigar"     "cigar"    
[72043] "cigar"     "sphere"    "cigar"     "sphere"    "light"     "light"    
[72049] "light"     "disk"      "oval"      "sphere"    "other"     "unknown"  
[72055] "other"     "sphere"    "triangle"  "light"     "light"     "triangle" 
[72061] "changing"  "circle"    "triangle"  "light"     "oval"      "light"    
[72067] "light"     "rectangle" "changing"  "unknown"   "fireball"  "triangle" 
[72073] "other"     "sphere"    "other"     "cigar"     "light"     "cigar"    
[72079] "egg"       "cylinder"  "cone"      "light"     "cone"      "light"    
[72085] "circle"    "light"     "light"     "formation" "oval"      NA         
[72091] "rectangle" "circle"    "light"     "flash"     "cylinder"  "oval"     
[72097] "disk"      "circle"    "teardrop"  "disk"      "rectangle" "cylinder" 
[72103] "triangle"  "cigar"     "sphere"    NA          "triangle"  "circle"   
[72109] "light"     "triangle"  "circle"    "diamond"   "triangle"  "flash"    
[72115] "circle"    "circle"    "unknown"   NA          "sphere"    "sphere"   
[72121] "unknown"   "circle"    "circle"    "light"     "other"     "cross"    
[72127] "other"     NA          "other"     "light"     "fireball"  "formation"
[72133] "unknown"   "triangle"  "light"     "oval"      "fireball"  "other"    
[72139] "cigar"     "fireball"  "light"     "triangle"  "oval"      "sphere"   
[72145] "triangle"  "circle"    "light"     "other"     "light"     "light"    
[72151] "triangle"  "light"     "light"     "teardrop"  "triangle"  "unknown"  
[72157] "light"     "unknown"   "light"     "other"     "cigar"     "triangle" 
[72163] "diamond"   "light"     "changing"  "cigar"     "unknown"   "sphere"   
[72169] "formation" "unknown"   "other"     "triangle"  "fireball"  "light"    
[72175] "disk"      "triangle"  "circle"    "unknown"   "light"     NA         
[72181] "circle"    "chevron"   "disk"      "teardrop"  "other"     "other"    
[72187] "chevron"   "unknown"   "light"     "disk"      "circle"    NA         
[72193] "sphere"    "flash"     "oval"      "teardrop"  "sphere"    "sphere"   
[72199] "oval"      "light"     "circle"    "disk"      "light"     "flash"    
[72205] "light"     "circle"    "fireball"  "light"     "oval"      "sphere"   
[72211] "sphere"    "other"     "light"     "disk"      "light"     "cross"    
[72217] "oval"      "rectangle" "circle"    "circle"    "light"     "unknown"  
[72223] "unknown"   "diamond"   "teardrop"  "circle"    "sphere"    "sphere"   
[72229] "light"     "circle"    "fireball"  "light"     "fireball"  "circle"   
[72235] "fireball"  "fireball"  "sphere"    "fireball"  "unknown"   "other"    
[72241] "light"     "fireball"  "light"     "triangle"  "light"     "disk"     
[72247] "sphere"    "light"     "disk"      "circle"    "oval"      "circle"   
[72253] "sphere"    "light"     "triangle"  "sphere"    "oval"      "light"    
[72259] "light"     "unknown"   "other"     "unknown"   "light"     "light"    
[72265] "cross"     "light"     "circle"    "egg"       "light"     "light"    
[72271] "triangle"  "light"     "circle"    "diamond"   "unknown"   NA         
[72277] "other"     "triangle"  "circle"    "triangle"  "oval"      "flash"    
[72283] "triangle"  "circle"    "light"     "sphere"    "light"     "light"    
[72289] "sphere"    "oval"      "light"     "sphere"    "cigar"     "circle"   
[72295] "unknown"   "formation" "light"     "other"     "other"     "unknown"  
[72301] "formation" "unknown"   "circle"    "sphere"    "light"     "circle"   
[72307] "sphere"    "triangle"  "triangle"  "sphere"    "circle"    "light"    
[72313] "disk"      "light"     "disk"      "disk"      "diamond"   "disk"     
[72319] "oval"      "triangle"  "light"     "triangle"  "light"     "disk"     
[72325] "oval"      "disk"      "teardrop"  "disk"      "sphere"    "triangle" 
[72331] "disk"      "rectangle" "disk"      "triangle"  "triangle"  "rectangle"
[72337] "disk"      "disk"      "circle"    "triangle"  "disk"      "other"    
[72343] "sphere"    "sphere"    "sphere"    "sphere"    "light"     NA         
[72349] "disk"      "circle"    "triangle"  "fireball"  "light"     NA         
[72355] NA          NA          NA          NA          "disk"      "disk"     
[72361] "light"     "chevron"   "light"     "chevron"   "light"     "sphere"   
[72367] "light"     "light"     "oval"      "formation" "rectangle" "circle"   
[72373] "diamond"   "oval"      "oval"      "disk"      "disk"      "circle"   
[72379] "disk"      "formation" "disk"      "formation" "formation" "triangle" 
[72385] "triangle"  "teardrop"  "light"     "sphere"    "disk"      "circle"   
[72391] "fireball"  "unknown"   "teardrop"  "circle"    NA          "unknown"  
[72397] "triangle"  "unknown"   "sphere"    "other"     "cigar"     "circle"   
[72403] "sphere"    "disk"      "other"     "light"     "other"     "triangle" 
[72409] "light"     "oval"      "other"     "triangle"  "light"     "oval"     
[72415] "formation" "oval"      "light"     "fireball"  "light"     "circle"   
[72421] "light"     "triangle"  "egg"       "other"     "fireball"  "circle"   
[72427] "light"     "light"     "oval"      "triangle"  "light"     "triangle" 
[72433] "unknown"   "light"     "disk"      "other"     "light"     "changing" 
[72439] "other"     "formation" "triangle"  "oval"      "disk"      "disk"     
[72445] "other"     "circle"    "light"     "disk"      "triangle"  "triangle" 
[72451] "triangle"  NA          "light"     "other"     "triangle"  "disk"     
[72457] "chevron"   "circle"    "other"     "other"     "light"     "sphere"   
[72463] "triangle"  "light"     "cylinder"  "circle"    "sphere"    "other"    
[72469] "cylinder"  "other"     "triangle"  "light"     "disk"      "light"    
[72475] "triangle"  "triangle"  "unknown"   "sphere"    "other"     "light"    
[72481] "unknown"   "egg"       "triangle"  "light"     "formation" "disk"     
[72487] "disk"      "changing"  "light"     "light"     "light"     "triangle" 
[72493] "light"     "unknown"   "light"     "triangle"  "light"     "light"    
[72499] "flash"     "cigar"     "other"     "circle"    "oval"      "light"    
[72505] "triangle"  "unknown"   "other"     "other"     "formation" "light"    
[72511] "light"     NA          "teardrop"  "unknown"   "disk"      "other"    
[72517] "light"     "disk"      "changing"  "light"     "flash"     "formation"
[72523] "other"     "other"     "unknown"   "triangle"  "cigar"     "unknown"  
[72529] "oval"      "light"     "disk"      "triangle"  "unknown"   "sphere"   
[72535] "light"     "unknown"   "light"     "light"     "light"     "fireball" 
[72541] "circle"    "unknown"   "formation" "fireball"  "other"     "triangle" 
[72547] "circle"    "light"     "unknown"   "light"     "triangle"  "sphere"   
[72553] "oval"      "egg"       "light"     "formation" "circle"    "circle"   
[72559] "triangle"  "circle"    "light"     "light"     "fireball"  "triangle" 
[72565] "unknown"   "light"     "triangle"  "rectangle" "unknown"   "oval"     
[72571] "light"     "unknown"   "sphere"    "cigar"     "sphere"    "light"    
[72577] "light"     "light"     "light"     "oval"      "sphere"    "diamond"  
[72583] "unknown"   "teardrop"  "unknown"   "disk"      "light"     "triangle" 
[72589] "light"     "changing"  "circle"    "changing"  "triangle"  "chevron"  
[72595] "unknown"   "sphere"    "other"     "other"     "circle"    "sphere"   
[72601] "fireball"  "light"     "light"     "unknown"   "other"     "triangle" 
[72607] "circle"    "triangle"  "triangle"  "sphere"    "light"     "unknown"  
[72613] "triangle"  "light"     "other"     "light"     "sphere"    "triangle" 
[72619] "light"     "fireball"  "unknown"   "disk"      "disk"      "light"    
[72625] "sphere"    "light"     "light"     "triangle"  "sphere"    "fireball" 
[72631] "disk"      "circle"    "light"     "light"     NA          "fireball" 
[72637] "unknown"   "light"     "light"     "fireball"  "other"     "sphere"   
[72643] "fireball"  "fireball"  "triangle"  "light"     "light"     "fireball" 
[72649] "light"     "sphere"    "unknown"   "circle"    "formation" "flash"    
[72655] "oval"      "diamond"   NA          "disk"      "light"     "other"    
[72661] "rectangle" "unknown"   "light"     "sphere"    "circle"    "sphere"   
[72667] "unknown"   "unknown"   "light"     "egg"       "egg"       "fireball" 
[72673] "other"     NA          "fireball"  "fireball"  "fireball"  "disk"     
[72679] "formation" "sphere"    "fireball"  "fireball"  "triangle"  "circle"   
[72685] "circle"    "sphere"    "triangle"  "oval"      "unknown"   "circle"   
[72691] "chevron"   "sphere"    "light"     "triangle"  "light"     "light"    
[72697] "light"     "changing"  "light"     "circle"    "changing"  "circle"   
[72703] "egg"       "cylinder"  "light"     "light"     "fireball"  "changing" 
[72709] "fireball"  "cylinder"  "circle"    "light"     "fireball"  "triangle" 
[72715] "triangle"  "fireball"  "sphere"    "light"     "unknown"   "triangle" 
[72721] "triangle"  "light"     "diamond"   "sphere"    "unknown"   "light"    
[72727] NA          "disk"      "other"     "formation" "rectangle" "triangle" 
[72733] "cigar"     "triangle"  "unknown"   "formation" NA          "chevron"  
[72739] NA          "triangle"  NA          NA          NA          NA         
[72745] "sphere"    "disk"      "sphere"    "circle"    "flash"     "changing" 
[72751] "light"     "other"     "triangle"  "circle"    "disk"      "light"    
[72757] "unknown"   "triangle"  "triangle"  "other"     "triangle"  "fireball" 
[72763] "triangle"  "circle"    "oval"      "unknown"   "rectangle" "light"    
[72769] "triangle"  "disk"      "fireball"  "unknown"   "light"     "fireball" 
[72775] "changing"  "light"     "light"     "oval"      "unknown"   "sphere"   
[72781] "light"     "diamond"   "light"     "light"     "light"     "rectangle"
[72787] "rectangle" "circle"    "chevron"   "triangle"  "light"     "disk"     
[72793] "disk"      "cylinder"  "fireball"  "other"     "other"     "light"    
[72799] "light"     "changing"  "sphere"    "rectangle" "light"     "oval"     
[72805] "light"     "light"     "light"     "formation" "formation" "disk"     
[72811] "light"     "other"     "oval"      "unknown"   "oval"      "sphere"   
[72817] "other"     "unknown"   "unknown"   "flash"     "triangle"  "circle"   
[72823] "other"     "diamond"   "other"     "circle"    "light"     "light"    
[72829] "light"     "light"     "oval"      "other"     "unknown"   "unknown"  
[72835] "cigar"     "sphere"    "disk"      "chevron"   "other"     "triangle" 
[72841] "light"     "light"     "formation" "oval"      "light"     "unknown"  
[72847] "light"     "circle"    "diamond"   "circle"    "sphere"    "unknown"  
[72853] "cone"      "sphere"    "oval"      "circle"    "formation" "light"    
[72859] "egg"       "light"     "triangle"  "light"     "triangle"  "triangle" 
[72865] "unknown"   "triangle"  "triangle"  "triangle"  "disk"      "sphere"   
[72871] "disk"      "other"     "sphere"    "disk"      "disk"      "triangle" 
[72877] "changing"  "circle"    "unknown"   "circle"    "circle"    "oval"     
[72883] "triangle"  "cylinder"  "oval"      "disk"      "cylinder"  "disk"     
[72889] "light"     "light"     "unknown"   "light"     "light"     "oval"     
[72895] "cigar"     "sphere"    "unknown"   "light"     "unknown"   "other"    
[72901] "triangle"  "light"     "light"     NA          "formation" "unknown"  
[72907] "triangle"  "triangle"  NA          "triangle"  "unknown"   "circle"   
[72913] "circle"    "light"     "light"     "unknown"   "light"     "light"    
[72919] "triangle"  "circle"    "unknown"   "sphere"    "circle"    "unknown"  
[72925] "changing"  "light"     "light"     "oval"      "sphere"    "triangle" 
[72931] "circle"    "light"     "triangle"  "other"     "formation" "triangle" 
[72937] "unknown"   "oval"      "triangle"  "other"     "teardrop"  "fireball" 
[72943] "circle"    "unknown"   "diamond"   "teardrop"  "other"     "sphere"   
[72949] "cylinder"  "circle"    "circle"    "light"     "light"     "teardrop" 
[72955] "cylinder"  "fireball"  "fireball"  "fireball"  "fireball"  "light"    
[72961] "light"     "disk"      "fireball"  "light"     "changing"  "rectangle"
[72967] "diamond"   "light"     "triangle"  "light"     "unknown"   "other"    
[72973] "fireball"  "other"     "circle"    "triangle"  "light"     "formation"
[72979] "unknown"   "disk"      "chevron"   "oval"      "circle"    "rectangle"
[72985] "fireball"  "other"     "changing"  "light"     "formation" "circle"   
[72991] "light"     "changing"  "other"     "circle"    "light"     "fireball" 
[72997] "chevron"   "unknown"   "rectangle" NA          "triangle"  "circle"   
[73003] "unknown"   "changing"  "formation" "unknown"   "triangle"  "circle"   
[73009] "light"     "unknown"   "other"     "light"     "light"     "light"    
[73015] "disk"      "fireball"  "light"     "circle"    "disk"      "sphere"   
[73021] "light"     "light"     "circle"    "light"     "sphere"    "cigar"    
[73027] "light"     "light"     "disk"      "fireball"  "disk"      "circle"   
[73033] "oval"      "disk"      "disk"      "circle"    "triangle"  "sphere"   
[73039] "formation" "disk"      "light"     "other"     "circle"    "light"    
[73045] "unknown"   "chevron"   "sphere"    "triangle"  NA          NA         
[73051] "formation" "triangle"  NA          NA          "light"     "other"    
[73057] "disk"      "fireball"  "fireball"  "rectangle" "light"     "triangle" 
[73063] "flash"     "circle"    "other"     "triangle"  "disk"      "light"    
[73069] "light"     "circle"    "circle"    "disk"      NA          "light"    
[73075] "circle"    "sphere"    "triangle"  "sphere"    "rectangle" "light"    
[73081] "unknown"   "diamond"   "teardrop"  "rectangle" "light"     "other"    
[73087] "light"     "light"     "disk"      "triangle"  "diamond"   "light"    
[73093] "diamond"   "light"     "circle"    "circle"    "oval"      "other"    
[73099] "other"     "cigar"     "circle"    "circle"    "triangle"  "cigar"    
[73105] "disk"      "chevron"   "formation" "changing"  "fireball"  "light"    
[73111] "sphere"    "light"     "unknown"   "unknown"   "triangle"  "light"    
[73117] "circle"    "circle"    "sphere"    "light"     "diamond"   NA         
[73123] "other"     "circle"    "disk"      "disk"      "other"     "light"    
[73129] "triangle"  "formation" "triangle"  "light"     "triangle"  "sphere"   
[73135] "light"     "circle"    "cone"      "circle"    "sphere"    "cross"    
[73141] "triangle"  "unknown"   "unknown"   "disk"      "triangle"  "disk"     
[73147] "disk"      "light"     "circle"    "circle"    "light"     "rectangle"
[73153] "circle"    "disk"      "fireball"  "triangle"  "triangle"  "disk"     
[73159] "light"     "other"     "sphere"    "circle"    "sphere"    "light"    
[73165] "other"     "diamond"   "diamond"   "circle"    "triangle"  "triangle" 
[73171] "egg"       "unknown"   "light"     "light"     "unknown"   "unknown"  
[73177] "circle"    "oval"      NA          "circle"    "teardrop"  "unknown"  
[73183] "rectangle" "light"     "fireball"  "light"     "disk"      "circle"   
[73189] "egg"       "sphere"    "circle"    "light"     "triangle"  "disk"     
[73195] "sphere"    "triangle"  "cylinder"  "other"     "disk"      "triangle" 
[73201] "circle"    "unknown"   "light"     "sphere"    "sphere"    "unknown"  
[73207] "fireball"  "changing"  "light"     "oval"      "unknown"   "fireball" 
[73213] "formation" "light"     "unknown"   "other"     "triangle"  "circle"   
[73219] "oval"      "circle"    "disk"      "fireball"  "light"     "formation"
[73225] "triangle"  "light"     "egg"       "triangle"  "teardrop"  "sphere"   
[73231] "other"     "sphere"    "sphere"    "light"     "diamond"   "fireball" 
[73237] "light"     "oval"      "light"     "light"     "unknown"   "other"    
[73243] "oval"      "flash"     "changing"  "circle"    "light"     "other"    
[73249] "other"     "other"     "unknown"   "disk"      "fireball"  "disk"     
[73255] "light"     "unknown"   "triangle"  "light"     "light"     "fireball" 
[73261] "circle"    "circle"    "fireball"  "triangle"  "flash"     "light"    
[73267] "formation" "other"     "light"     "oval"      "cigar"     "sphere"   
[73273] "unknown"   "triangle"  "unknown"   "fireball"  "fireball"  "fireball" 
[73279] "light"     "cone"      "circle"    "fireball"  "light"     "light"    
[73285] "circle"    "diamond"   "rectangle" "fireball"  "flash"     "rectangle"
[73291] NA          "light"     "cigar"     "light"     "sphere"    "disk"     
[73297] "fireball"  "triangle"  "disk"      "triangle"  "light"     "sphere"   
[73303] "triangle"  "fireball"  "triangle"  "oval"      "light"     "triangle" 
[73309] "fireball"  "light"     "light"     "light"     "light"     "unknown"  
[73315] "disk"      "cigar"     "oval"      "circle"    "light"     "circle"   
[73321] "disk"      "disk"      "cigar"     "disk"      "light"     "disk"     
[73327] "circle"    "other"     "sphere"    "oval"      "cigar"     "triangle" 
[73333] "cigar"     "disk"      NA          "oval"      "unknown"   "light"    
[73339] "circle"    "oval"      "light"     "disk"      "disk"      "oval"     
[73345] "disk"      "unknown"   "fireball"  "cigar"     "oval"      "light"    
[73351] "oval"      "cigar"     "sphere"    "disk"      "disk"      "light"    
[73357] "fireball"  "sphere"    "other"     "disk"      "disk"      "disk"     
[73363] "cigar"     "cigar"     "unknown"   "light"     "sphere"    "disk"     
[73369] "circle"    "sphere"    "disk"      "disk"      "cigar"     "oval"     
[73375] "sphere"    "disk"      "formation" "light"     "disk"      "light"    
[73381] "circle"    "circle"    "triangle"  "disk"      "other"     "cylinder" 
[73387] "other"     "cigar"     "circle"    "formation" "unknown"   "formation"
[73393] "disk"      "rectangle" "egg"       "disk"      "unknown"   "triangle" 
[73399] "disk"      "light"     "light"     "circle"    "disk"      "sphere"   
[73405] "circle"    "unknown"   "disk"      "disk"      "sphere"    "triangle" 
[73411] "sphere"    "disk"      "disk"      "circle"    "circle"    "triangle" 
[73417] "disk"      "cigar"     "light"     "unknown"   "other"     "disk"     
[73423] "disk"      "other"     "cylinder"  "disk"      "disk"      "disk"     
[73429] "cone"      "cigar"     "other"     "triangle"  "fireball"  "circle"   
[73435] "light"     "cylinder"  "disk"      "other"     "circle"    "triangle" 
[73441] "circle"    "sphere"    "formation" "light"     "changing"  "unknown"  
[73447] "light"     "disk"      "light"     "disk"      "sphere"    "light"    
[73453] "light"     "sphere"    "fireball"  "flash"     "rectangle" "unknown"  
[73459] "other"     "sphere"    "oval"      "fireball"  "disk"      "other"    
[73465] "disk"      "triangle"  "light"     "cigar"     "circle"    "triangle" 
[73471] "circle"    "disk"      "light"     "oval"      "circle"    "triangle" 
[73477] "oval"      "disk"      "light"     "triangle"  "fireball"  "circle"   
[73483] "light"     "disk"      "unknown"   "formation" "sphere"    "circle"   
[73489] "disk"      "unknown"   "cylinder"  "unknown"   "sphere"    "unknown"  
[73495] "triangle"  "unknown"   "changing"  "teardrop"  "disk"      "sphere"   
[73501] "sphere"    "disk"      "light"     "disk"      "disk"      "triangle" 
[73507] "fireball"  "triangle"  "other"     "triangle"  "chevron"   "disk"     
[73513] "unknown"   "light"     "light"     "oval"      "triangle"  "sphere"   
[73519] "cigar"     "disk"      "light"     "chevron"   "other"     "rectangle"
[73525] "triangle"  "other"     "formation" "cigar"     "triangle"  "triangle" 
[73531] "circle"    "chevron"   "cigar"     "triangle"  "diamond"   "unknown"  
[73537] "disk"      "triangle"  "sphere"    "light"     "other"     NA         
[73543] "disk"      "light"     "chevron"   "cylinder"  "sphere"    "cigar"    
[73549] "rectangle" "light"     "triangle"  "disk"      "disk"      "oval"     
[73555] NA          "oval"      "rectangle" "fireball"  "diamond"   "triangle" 
[73561] "triangle"  "unknown"   "light"     "circle"    "diamond"   "light"    
[73567] "sphere"    "triangle"  "other"     "unknown"   "triangle"  "triangle" 
[73573] "light"     "unknown"   "egg"       "disk"      "cigar"     "light"    
[73579] "egg"       "other"     "triangle"  "other"     "cigar"     "circle"   
[73585] "circle"    NA          "triangle"  "circle"    "flash"     "triangle" 
[73591] "triangle"  "other"     "disk"      "fireball"  "formation" "disk"     
[73597] "unknown"   "cigar"     "oval"      "light"     "diamond"   "other"    
[73603] "fireball"  "unknown"   "triangle"  "triangle"  "rectangle" "rectangle"
[73609] "light"     "light"     NA          NA          NA          NA         
[73615] "oval"      NA          "disk"      "disk"      "teardrop"  "cigar"    
[73621] "triangle"  "oval"      "changing"  "other"     "disk"      "unknown"  
[73627] "other"     NA          "cone"      "light"     "circle"    "disk"     
[73633] "light"     "light"     "light"     "other"     "circle"    "rectangle"
[73639] "triangle"  "triangle"  "other"     "formation" "other"     "light"    
[73645] "egg"       "cross"     "light"     "other"     "triangle"  "triangle" 
[73651] "oval"      "circle"    "triangle"  "light"     "sphere"    "unknown"  
[73657] "triangle"  "disk"      "disk"      "chevron"   "sphere"    "oval"     
[73663] "other"     "light"     "other"     "triangle"  "triangle"  "light"    
[73669] NA          "flash"     "light"     "triangle"  "fireball"  "other"    
[73675] "circle"    "triangle"  "sphere"    "circle"    "sphere"    "unknown"  
[73681] "sphere"    "teardrop"  "unknown"   "light"     "light"     "unknown"  
[73687] "light"     "triangle"  "triangle"  "light"     "rectangle" "oval"     
[73693] "unknown"   "disk"      "cylinder"  "light"     "sphere"    "other"    
[73699] "unknown"   "disk"      "diamond"   "cigar"     "cigar"     "fireball" 
[73705] "light"     "triangle"  "unknown"   "formation" "changing"  "fireball" 
[73711] "light"     "unknown"   "circle"    "fireball"  "circle"    "light"    
[73717] "light"     "light"     "flash"     NA          "light"     "fireball" 
[73723] NA          "other"     "flash"     "fireball"  "circle"    "other"    
[73729] "other"     "light"     "unknown"   "sphere"    NA          NA         
[73735] "unknown"   "light"     NA          "fireball"  NA          "fireball" 
[73741] "fireball"  "flash"     "circle"    "circle"    "other"     "circle"   
[73747] "light"     "triangle"  "other"     "circle"    "cone"      "sphere"   
[73753] "sphere"    "unknown"   "circle"    "light"     "light"     "unknown"  
[73759] "circle"    "light"     "light"     "light"     "circle"    "light"    
[73765] "triangle"  "light"     "circle"    "disk"      "light"     "fireball" 
[73771] "cigar"     "disk"      "light"     "changing"  "cone"      "light"    
[73777] "triangle"  "formation" "unknown"   "unknown"   "rectangle" "unknown"  
[73783] "disk"      "disk"      "rectangle" "oval"      "triangle"  "disk"     
[73789] "cross"     "disk"      "light"     "diamond"   "triangle"  "triangle" 
[73795] "flash"     "flash"     "light"     "fireball"  "light"     "triangle" 
[73801] "unknown"   "fireball"  "rectangle" "fireball"  "unknown"   "circle"   
[73807] "light"     "light"     "fireball"  "other"     "unknown"   "other"    
[73813] "flash"     "unknown"   "sphere"    "rectangle" "oval"      "sphere"   
[73819] "fireball"  "sphere"    "light"     "circle"    "light"     "light"    
[73825] "light"     "fireball"  "disk"      "light"     "unknown"   "light"    
[73831] "oval"      "disk"      "light"     "fireball"  "circle"    "circle"   
[73837] NA          "oval"      "diamond"   "oval"      "sphere"    "cross"    
[73843] "light"     "other"     "circle"    "circle"    "disk"      "unknown"  
[73849] "light"     "other"     "light"     "light"     "cylinder"  "light"    
[73855] "oval"      "flash"     "sphere"    "triangle"  "fireball"  "triangle" 
[73861] "disk"      "triangle"  "disk"      "other"     "triangle"  "unknown"  
[73867] "formation" "triangle"  "fireball"  "sphere"    "circle"    "light"    
[73873] "cylinder"  "triangle"  "light"     "triangle"  "sphere"    "triangle" 
[73879] "light"     "oval"      "light"     "sphere"    "light"     "disk"     
[73885] "light"     "light"     "formation" "light"     "other"     "formation"
[73891] "unknown"   "light"     "fireball"  "other"     "triangle"  "triangle" 
[73897] "disk"      "unknown"   "light"     "other"     "disk"      "cylinder" 
[73903] "sphere"    "disk"      "sphere"    NA          "light"     "light"    
[73909] "other"     "other"     "disk"      "unknown"   "other"     "other"    
[73915] "circle"    "fireball"  "teardrop"  "circle"    "triangle"  "circle"   
[73921] "disk"      NA          "unknown"   "circle"    "unknown"   "light"    
[73927] "sphere"    "flash"     "other"     "sphere"    "triangle"  "other"    
[73933] "sphere"    "light"     "unknown"   "cigar"     "other"     "circle"   
[73939] "diamond"   "fireball"  "flash"     "other"     "other"     "other"    
[73945] "fireball"  "triangle"  "unknown"   "unknown"   "light"     "sphere"   
[73951] "sphere"    "unknown"   "fireball"  "unknown"   "flash"     "fireball" 
[73957] "light"     NA          "other"     NA          "fireball"  "circle"   
[73963] "disk"      "unknown"   "light"     "disk"      "light"     "fireball" 
[73969] "sphere"    "fireball"  "chevron"   "chevron"   "light"     "fireball" 
[73975] "light"     "triangle"  "light"     "oval"      "other"     "light"    
[73981] "teardrop"  "fireball"  "unknown"   "triangle"  "light"     "teardrop" 
[73987] "changing"  "rectangle" "triangle"  "circle"    "triangle"  "circle"   
[73993] "flash"     "changing"  "oval"      "oval"      "unknown"   "light"    
[73999] "formation" "light"     "fireball"  "rectangle" "disk"      "rectangle"
[74005] "disk"      "triangle"  "sphere"    "circle"    "light"     "other"    
[74011] NA          "circle"    "oval"      "other"     "triangle"  "fireball" 
[74017] "circle"    "other"     "other"     "fireball"  "light"     "unknown"  
[74023] "triangle"  "unknown"   "fireball"  "fireball"  "circle"    "light"    
[74029] "fireball"  "fireball"  "light"     "other"     "fireball"  "disk"     
[74035] "circle"    "light"     "light"     "oval"      "changing"  "sphere"   
[74041] "other"     "disk"      "light"     "unknown"   "sphere"    "light"    
[74047] "oval"      "cylinder"  "sphere"    "disk"      "unknown"   "circle"   
[74053] "fireball"  "triangle"  "light"     "flash"     "triangle"  "circle"   
[74059] "light"     "egg"       "diamond"   "cigar"     "other"     "triangle" 
[74065] "cigar"     "unknown"   "fireball"  "light"     "circle"    "unknown"  
[74071] "light"     "light"     "triangle"  "light"     "light"     "rectangle"
[74077] "formation" "cigar"     "disk"      "circle"    "cigar"     "fireball" 
[74083] "cylinder"  "unknown"   "sphere"    "triangle"  "fireball"  "oval"     
[74089] "unknown"   "circle"    "teardrop"  "light"     "fireball"  "circle"   
[74095] "other"     "circle"    "fireball"  "chevron"   "rectangle" "sphere"   
[74101] "formation" "unknown"   "other"     "cigar"     "light"     "cylinder" 
[74107] "other"     "diamond"   "triangle"  "diamond"   "circle"    "disk"     
[74113] "cylinder"  "sphere"    "fireball"  "light"     "cylinder"  "light"    
[74119] "unknown"   "sphere"    "chevron"   "triangle"  "unknown"   "oval"     
[74125] "light"     "formation" "circle"    "circle"    "light"     "sphere"   
[74131] "sphere"    "changing"  "disk"      "circle"    "light"     "light"    
[74137] "disk"      "oval"      "disk"      "disk"      "changing"  "changing" 
[74143] "disk"      "fireball"  "triangle"  "cylinder"  "light"     "other"    
[74149] "triangle"  "triangle"  "circle"    "circle"    "oval"      "light"    
[74155] "other"     "light"     "unknown"   "unknown"   "disk"      "triangle" 
[74161] NA          NA          "unknown"   NA          "triangle"  "triangle" 
[74167] "light"     "cigar"     "cigar"     "cigar"     "flash"     "light"    
[74173] "flash"     "oval"      "light"     NA          "changing"  "other"    
[74179] "fireball"  "fireball"  "sphere"    "other"     "circle"    "sphere"   
[74185] "disk"      "light"     "fireball"  "fireball"  "other"     "light"    
[74191] "cigar"     "sphere"    "triangle"  "light"     "oval"      "light"    
[74197] "oval"      "oval"      "light"     "disk"      "fireball"  "fireball" 
[74203] "triangle"  "light"     "light"     "formation" "triangle"  "cylinder" 
[74209] "light"     "light"     "disk"      "oval"      "light"     "sphere"   
[74215] "light"     "triangle"  "light"     "light"     "disk"      "sphere"   
[74221] "chevron"   "chevron"   "other"     "unknown"   "formation" "cylinder" 
[74227] "unknown"   "teardrop"  "unknown"   "triangle"  "unknown"   "changing" 
[74233] "formation" "fireball"  "light"     "disk"      "light"     "triangle" 
[74239] "flash"     "oval"      "other"     "disk"      "light"     "cross"    
[74245] "unknown"   "disk"      "disk"      "circle"    "circle"    "triangle" 
[74251] "triangle"  "other"     "light"     "light"     "flash"     "chevron"  
[74257] "changing"  "other"     "light"     "triangle"  "unknown"   "light"    
[74263] "light"     "triangle"  "circle"    "changing"  "unknown"   "light"    
[74269] "fireball"  "triangle"  "chevron"   "circle"    "changing"  "light"    
[74275] "light"     "unknown"   "formation" "flash"     "disk"      "unknown"  
[74281] "formation" NA          "disk"      "sphere"    "cylinder"  "egg"      
[74287] "triangle"  "light"     "disk"      "light"     "other"     "unknown"  
[74293] "fireball"  "light"     "oval"      "circle"    "light"     "light"    
[74299] "light"     "fireball"  "oval"      "oval"      "light"     "fireball" 
[74305] "light"     "circle"    "fireball"  "triangle"  "cylinder"  "sphere"   
[74311] "changing"  "changing"  "fireball"  "light"     "light"     "other"    
[74317] "triangle"  "circle"    "cigar"     "light"     "light"     "light"    
[74323] "light"     "circle"    "fireball"  "other"     "triangle"  "fireball" 
[74329] "triangle"  "light"     "light"     "triangle"  "circle"    "light"    
[74335] "cylinder"  "unknown"   "light"     "fireball"  "cylinder"  "formation"
[74341] "cylinder"  "disk"      "light"     "fireball"  "triangle"  "oval"     
[74347] "triangle"  "changing"  "light"     "disk"      "triangle"  "fireball" 
[74353] "flash"     "disk"      "fireball"  "unknown"   "sphere"    "sphere"   
[74359] "unknown"   "sphere"    "sphere"    "triangle"  "light"     "circle"   
[74365] "fireball"  "circle"    "light"     "cigar"     "disk"      "circle"   
[74371] "circle"    "sphere"    "fireball"  "light"     "cone"      "light"    
[74377] "light"     "fireball"  "other"     "light"     "fireball"  "fireball" 
[74383] "cone"      "light"     "circle"    "fireball"  "fireball"  "oval"     
[74389] "triangle"  "triangle"  "formation" "fireball"  "fireball"  "disk"     
[74395] "triangle"  "other"     "disk"      "cigar"     "sphere"    "formation"
[74401] "other"     "circle"    "disk"      "triangle"  "oval"      "fireball" 
[74407] "cigar"     "disk"      "light"     "chevron"   "unknown"   "unknown"  
[74413] "unknown"   "fireball"  NA          NA          NA          "disk"     
[74419] "light"     "sphere"    "disk"      "triangle"  "light"     "light"    
[74425] "circle"    "oval"      "light"     "diamond"   "triangle"  "fireball" 
[74431] "changing"  "other"     "disk"      "sphere"    "diamond"   "other"    
[74437] "circle"    "light"     "light"     "unknown"   "sphere"    "circle"   
[74443] "changing"  "cigar"     "sphere"    "light"     "other"     "unknown"  
[74449] "circle"    "light"     "light"     "light"     "light"     "triangle" 
[74455] NA          "fireball"  "fireball"  "fireball"  "other"     "light"    
[74461] "fireball"  "triangle"  "unknown"   "unknown"   "sphere"    "light"    
[74467] "other"     "cylinder"  "rectangle" "disk"      "formation" "diamond"  
[74473] "triangle"  "egg"       "light"     "other"     "disk"      "formation"
[74479] "light"     "light"     "light"     "circle"    "circle"    "cigar"    
[74485] "oval"      "cylinder"  "light"     "rectangle" "light"     "light"    
[74491] "fireball"  "flash"     "disk"      "unknown"   "triangle"  "changing" 
[74497] "triangle"  "light"     "light"     "light"     "unknown"   "circle"   
[74503] "light"     "triangle"  "flash"     "rectangle" "diamond"   "triangle" 
[74509] "changing"  "sphere"    "light"     "light"     "sphere"    "disk"     
[74515] "disk"      "changing"  "light"     "cylinder"  "disk"      "diamond"  
[74521] "sphere"    "other"     "light"     "fireball"  "other"     "light"    
[74527] "light"     "other"     "sphere"    "diamond"   "formation" "disk"     
[74533] "triangle"  "light"     "teardrop"  "triangle"  "formation" "light"    
[74539] "triangle"  "light"     "oval"      "disk"      "formation" "unknown"  
[74545] "other"     "chevron"   "cigar"     "unknown"   "egg"       "light"    
[74551] "circle"    "light"     "sphere"    "unknown"   "oval"      "light"    
[74557] "unknown"   "rectangle" "fireball"  "triangle"  "light"     "light"    
[74563] "sphere"    "rectangle" "circle"    "triangle"  "unknown"   "unknown"  
[74569] "light"     "disk"      "light"     "diamond"   "sphere"    "circle"   
[74575] "light"     "disk"      "rectangle" "light"     "cylinder"  "light"    
[74581] "triangle"  "light"     "sphere"    "circle"    "light"     "light"    
[74587] "light"     "light"     "disk"      "unknown"   "circle"    "circle"   
[74593] "cigar"     "triangle"  "triangle"  "fireball"  "light"     NA         
[74599] "cigar"     "light"     "other"     "light"     "circle"    "circle"   
[74605] "fireball"  "formation" "oval"      "circle"    "oval"      "fireball" 
[74611] "circle"    "fireball"  "light"     "light"     "triangle"  "fireball" 
[74617] "light"     "light"     "triangle"  "circle"    "other"     "fireball" 
[74623] "other"     "circle"    "oval"      "rectangle" "light"     "light"    
[74629] "diamond"   "sphere"    "light"     "formation" "unknown"   "circle"   
[74635] "unknown"   "light"     "sphere"    "light"     "other"     "circle"   
[74641] "formation" "rectangle" "light"     "sphere"    "light"     "sphere"   
[74647] "light"     "sphere"    "circle"    "fireball"  "circle"    "oval"     
[74653] NA          "unknown"   "unknown"   "sphere"    "fireball"  "triangle" 
[74659] "sphere"    "diamond"   "diamond"   "disk"      "triangle"  "circle"   
[74665] "triangle"  "other"     "light"     "disk"      "cigar"     "triangle" 
[74671] "triangle"  "disk"      "other"     "disk"      "disk"      "fireball" 
[74677] "disk"      NA          NA          "triangle"  "other"     "sphere"   
[74683] "teardrop"  "circle"    "egg"       "disk"      "circle"    "fireball" 
[74689] "other"     "triangle"  "oval"      "oval"      "diamond"   "formation"
[74695] "circle"    "cigar"     "other"     "chevron"   "light"     "diamond"  
[74701] NA          "disk"      "other"     "fireball"  "light"     "unknown"  
[74707] "light"     "light"     "light"     "other"     "light"     "light"    
[74713] "disk"      "triangle"  "triangle"  "other"     "circle"    "light"    
[74719] "oval"      "formation" "triangle"  "light"     "triangle"  "unknown"  
[74725] "triangle"  "cigar"     "other"     "oval"      "light"     "disk"     
[74731] "oval"      "other"     "oval"      "light"     "teardrop"  "fireball" 
[74737] "triangle"  "light"     "disk"      "other"     "disk"      "other"    
[74743] "diamond"   "cylinder"  "other"     NA          "unknown"   "triangle" 
[74749] "changing"  "triangle"  "oval"      "light"     "light"     "sphere"   
[74755] "oval"      "light"     "oval"      "fireball"  "light"     "other"    
[74761] "circle"    "light"     "other"     "unknown"   "other"     "changing" 
[74767] "light"     "unknown"   "changing"  NA          "disk"      "disk"     
[74773] "rectangle" "light"     "other"     "light"     "triangle"  "fireball" 
[74779] "disk"      "flash"     "teardrop"  "disk"      "light"     NA         
[74785] "other"     "oval"      "oval"      "light"     "cigar"     "cigar"    
[74791] "circle"    "other"     "disk"      "cigar"     "unknown"   "light"    
[74797] "triangle"  "circle"    "formation" "light"     "disk"      "oval"     
[74803] "circle"    "oval"      "circle"    "fireball"  "sphere"    NA         
[74809] "cigar"     "oval"      "oval"      "circle"    "other"     "oval"     
[74815] "cigar"     "circle"    "cigar"     "circle"    "light"     "fireball" 
[74821] "diamond"   "chevron"   "light"     "rectangle" "egg"       "light"    
[74827] "flash"     "oval"      "other"     "circle"    "oval"      "changing" 
[74833] "fireball"  "circle"    "disk"      "unknown"   "other"     "light"    
[74839] "light"     "triangle"  "sphere"    "cylinder"  "light"     "sphere"   
[74845] "other"     "light"     "flash"     "light"     "disk"      "diamond"  
[74851] "fireball"  "teardrop"  "sphere"    "circle"    "circle"    "oval"     
[74857] "diamond"   "oval"      "other"     "unknown"   "cross"     "rectangle"
[74863] "fireball"  "circle"    "sphere"    "oval"      "fireball"  "fireball" 
[74869] "light"     "sphere"    "unknown"   "light"     "formation" "circle"   
[74875] "oval"      "circle"    "triangle"  NA          "formation" "cylinder" 
[74881] "light"     "light"     "oval"      "circle"    "circle"    "light"    
[74887] "light"     "fireball"  "fireball"  NA          "cylinder"  "teardrop" 
[74893] "light"     "fireball"  "circle"    "sphere"    "teardrop"  "oval"     
[74899] "light"     "sphere"    "circle"    "light"     "light"     NA         
[74905] "fireball"  "circle"    "fireball"  "sphere"    "fireball"  "unknown"  
[74911] "fireball"  "fireball"  "circle"    "sphere"    "chevron"   "light"    
[74917] NA          "circle"    "circle"    "flash"     "rectangle" "oval"     
[74923] "sphere"    "disk"      "disk"      "changing"  "other"     "light"    
[74929] "circle"    "chevron"   "fireball"  "fireball"  "circle"    "fireball" 
[74935] "triangle"  "light"     "fireball"  "circle"    "light"     "light"    
[74941] "sphere"    "fireball"  "cylinder"  "light"     "disk"      "disk"     
[74947] "sphere"    "sphere"    "disk"      "unknown"   "unknown"   "light"    
[74953] NA          NA          "disk"      "unknown"   "changing"  "circle"   
[74959] "triangle"  "light"     "disk"      "fireball"  "light"     "light"    
[74965] "sphere"    "fireball"  "sphere"    "triangle"  "sphere"    "oval"     
[74971] "sphere"    "changing"  "circle"    NA          "disk"      "sphere"   
[74977] "egg"       "circle"    "triangle"  "other"     "diamond"   "formation"
[74983] "rectangle" "sphere"    "formation" "changing"  "other"     "other"    
[74989] "light"     "light"     NA          "diamond"   "formation" NA         
[74995] "light"     "light"     "light"     "triangle"  "triangle"  "other"    
[75001] "triangle"  "cross"     "unknown"   "rectangle" "unknown"   "other"    
[75007] "cigar"     "flash"     "fireball"  "unknown"   "light"     "disk"     
[75013] "circle"    "triangle"  "oval"      "unknown"   "cone"      "flash"    
[75019] "light"     "triangle"  "light"     "unknown"   "flash"     "unknown"  
[75025] "sphere"    "triangle"  "sphere"    "other"     "circle"    "light"    
[75031] "teardrop"  "rectangle" "light"     NA          "egg"       "sphere"   
[75037] "circle"    "light"     "circle"    "circle"    "circle"    "triangle" 
[75043] "teardrop"  "triangle"  "light"     "light"     "sphere"    "unknown"  
[75049] "triangle"  "formation" "fireball"  "unknown"   "circle"    "disk"     
[75055] "formation" "triangle"  "triangle"  "triangle"  "unknown"   "rectangle"
[75061] NA          "cigar"     "triangle"  "sphere"    "light"     "unknown"  
[75067] "light"     "light"     "diamond"   "disk"      "cylinder"  "light"    
[75073] "flash"     "rectangle" "cylinder"  "circle"    "circle"    "sphere"   
[75079] "light"     "triangle"  "oval"      "triangle"  "circle"    "disk"     
[75085] "circle"    "triangle"  "circle"    "light"     "light"     "circle"   
[75091] "flash"     "disk"      "light"     "unknown"   "formation" "unknown"  
[75097] "cross"     "light"     "changing"  "unknown"   "disk"      "sphere"   
[75103] "light"     "light"     "circle"    "light"     "light"     "light"    
[75109] "formation" "other"     "disk"      "triangle"  "light"     "unknown"  
[75115] "egg"       "disk"      "other"     "triangle"  "triangle"  "formation"
[75121] "light"     "light"     "flash"     "light"     "rectangle" "circle"   
[75127] "oval"      "changing"  "rectangle" "cylinder"  "circle"    "triangle" 
[75133] "light"     "triangle"  "triangle"  "circle"    "fireball"  "diamond"  
[75139] "disk"      "cigar"     NA          "triangle"  "triangle"  "rectangle"
[75145] "sphere"    "unknown"   "circle"    "unknown"   "fireball"  "light"    
[75151] "oval"      "oval"      "circle"    "triangle"  "circle"    "other"    
[75157] "light"     "unknown"   "changing"  "oval"      "other"     "fireball" 
[75163] "light"     "other"     "unknown"   "sphere"    "teardrop"  "unknown"  
[75169] "disk"      "teardrop"  "fireball"  "formation" "unknown"   "light"    
[75175] "formation" "light"     "fireball"  "disk"      "unknown"   "light"    
[75181] "sphere"    "light"     "circle"    "triangle"  "light"     "light"    
[75187] "unknown"   "other"     "chevron"   "sphere"    "sphere"    "fireball" 
[75193] "fireball"  "light"     "sphere"    "light"     "unknown"   "cylinder" 
[75199] "teardrop"  "fireball"  "diamond"   "triangle"  "light"     "circle"   
[75205] "teardrop"  "fireball"  "sphere"    "formation" "triangle"  "flash"    
[75211] "light"     "cylinder"  "other"     "sphere"    "circle"    "circle"   
[75217] "circle"    "light"     "light"     "light"     "disk"      "egg"      
[75223] "oval"      "fireball"  "sphere"    "unknown"   "cross"     "unknown"  
[75229] "sphere"    "cylinder"  "cylinder"  "cigar"     "light"     "sphere"   
[75235] "cigar"     "unknown"   "circle"    "cigar"     "fireball"  "circle"   
[75241] "light"     "sphere"    "triangle"  "oval"      "disk"      "other"    
[75247] "triangle"  "disk"      "cylinder"  "circle"    "rectangle" "disk"     
[75253] "disk"      "disk"      "fireball"  "disk"      "chevron"   "disk"     
[75259] "oval"      "cigar"     "sphere"    "triangle"  "sphere"    "oval"     
[75265] "light"     "rectangle" "sphere"    "disk"      "other"     "circle"   
[75271] "triangle"  "triangle"  "chevron"   "disk"      "sphere"    "unknown"  
[75277] "sphere"    "sphere"    "unknown"   "light"     "formation" "formation"
[75283] "sphere"    "light"     "disk"      "rectangle" "triangle"  "disk"     
[75289] "cigar"     "other"     "triangle"  "oval"      "triangle"  "triangle" 
[75295] "light"     "disk"      "unknown"   "oval"      "disk"      "triangle" 
[75301] NA          "circle"    NA          NA          NA          NA         
[75307] "disk"      "disk"      "light"     NA          "diamond"   "light"    
[75313] "light"     "triangle"  "light"     "fireball"  "triangle"  "unknown"  
[75319] "triangle"  "triangle"  "changing"  "unknown"   "disk"      "light"    
[75325] "light"     "sphere"    "flash"     "unknown"   "changing"  "circle"   
[75331] "sphere"    "formation" "formation" "light"     "disk"      "light"    
[75337] "formation" "sphere"    "circle"    "light"     "cylinder"  "teardrop" 
[75343] "changing"  "diamond"   NA          "disk"      "oval"      "cylinder" 
[75349] "light"     "unknown"   "disk"      "other"     "other"     "light"    
[75355] "light"     "circle"    "unknown"   "light"     "circle"    "light"    
[75361] "light"     "disk"      "fireball"  "light"     "formation" "other"    
[75367] "triangle"  "light"     "light"     "light"     "circle"    "circle"   
[75373] "light"     "triangle"  "fireball"  "rectangle" "disk"      "triangle" 
[75379] "other"     "other"     "disk"      "light"     "light"     "oval"     
[75385] "fireball"  "circle"    "light"     "unknown"   "sphere"    "light"    
[75391] "light"     "fireball"  "triangle"  "light"     "oval"      "triangle" 
[75397] "diamond"   "cigar"     "diamond"   "formation" "light"     "other"    
[75403] "triangle"  "circle"    "formation" "circle"    "fireball"  "sphere"   
[75409] "light"     "other"     "unknown"   "triangle"  "light"     "disk"     
[75415] NA          "disk"      "oval"      "changing"  "circle"    "triangle" 
[75421] "teardrop"  "light"     "formation" "cylinder"  "changing"  "light"    
[75427] "unknown"   "other"     "circle"    "oval"      "triangle"  "light"    
[75433] "other"     "light"     "formation" "triangle"  "triangle"  "fireball" 
[75439] "circle"    "formation" "oval"      "light"     "other"     "oval"     
[75445] "unknown"   "unknown"   "light"     "disk"      "changing"  "triangle" 
[75451] "circle"    "disk"      "disk"      "circle"    "unknown"   "disk"     
[75457] "circle"    "cigar"     "oval"      "light"     "triangle"  "light"    
[75463] "rectangle" "circle"    "cigar"     "formation" "oval"      "circle"   
[75469] "circle"    "flash"     "diamond"   "unknown"   "unknown"   NA         
[75475] "light"     "unknown"   "diamond"   "circle"    "other"     "other"    
[75481] "circle"    "light"     NA          "light"     "light"     "light"    
[75487] "light"     "sphere"    "light"     "light"     "oval"      "circle"   
[75493] "sphere"    "light"     "light"     "cylinder"  "cylinder"  "circle"   
[75499] "disk"      "unknown"   "triangle"  "formation" "oval"      "fireball" 
[75505] "cigar"     "cone"      "unknown"   "triangle"  "light"     "sphere"   
[75511] "sphere"    "light"     "light"     "fireball"  "light"     "unknown"  
[75517] "light"     "light"     "other"     "changing"  "circle"    "circle"   
[75523] "triangle"  "light"     "light"     "unknown"   "triangle"  "formation"
[75529] "unknown"   "light"     "light"     "light"     "circle"    "sphere"   
[75535] "circle"    "unknown"   "cigar"     "light"     "circle"    "light"    
[75541] "unknown"   "light"     "light"     "cigar"     "cigar"     "triangle" 
[75547] "sphere"    "changing"  "disk"      "sphere"    "sphere"    "light"    
[75553] "sphere"    "formation" "fireball"  "fireball"  "circle"    "fireball" 
[75559] "rectangle" "circle"    "light"     "other"     "formation" "circle"   
[75565] "fireball"  "formation" "light"     "oval"      "light"     "light"    
[75571] "fireball"  "circle"    "light"     "light"     "light"     "fireball" 
[75577] "fireball"  "sphere"    "flash"     "circle"    "cylinder"  "oval"     
[75583] "circle"    "flash"     "light"     "light"     "other"     "triangle" 
[75589] "sphere"    "circle"    "light"     "unknown"   "triangle"  "triangle" 
[75595] "oval"      "unknown"   "cigar"     "light"     "other"     "circle"   
[75601] "changing"  "other"     "disk"      "other"     "fireball"  "light"    
[75607] "fireball"  "fireball"  "light"     "circle"    "fireball"  "light"    
[75613] "sphere"    "light"     "egg"       "light"     "fireball"  "triangle" 
[75619] "circle"    "fireball"  "circle"    "changing"  "other"     "rectangle"
[75625] "rectangle" "sphere"    "rectangle" "fireball"  "other"     "diamond"  
[75631] "triangle"  NA          NA          NA          NA          NA         
[75637] NA          "other"     "circle"    "other"     "triangle"  "egg"      
[75643] "sphere"    "light"     "rectangle" "chevron"   "cigar"     "light"    
[75649] "triangle"  "sphere"    "unknown"   "rectangle" "circle"    "oval"     
[75655] "changing"  "unknown"   "light"     "unknown"   "cylinder"  "unknown"  
[75661] "sphere"    "triangle"  "fireball"  "other"     "triangle"  "unknown"  
[75667] "other"     "flash"     "light"     "light"     "other"     "triangle" 
[75673] "light"     "triangle"  "changing"  NA          "changing"  "triangle" 
[75679] "unknown"   "triangle"  "triangle"  "cigar"     "disk"      "triangle" 
[75685] "rectangle" "light"     "chevron"   "chevron"   "light"     "light"    
[75691] "light"     "light"     "egg"       "flash"     NA          "disk"     
[75697] "unknown"   "light"     "changing"  "diamond"   "light"     "light"    
[75703] "formation" "light"     "light"     "diamond"   "formation" "light"    
[75709] "circle"    "triangle"  "unknown"   "triangle"  "light"     "light"    
[75715] "triangle"  "formation" "fireball"  "formation" "light"     "light"    
[75721] "light"     "oval"      "triangle"  "light"     "light"     "oval"     
[75727] "light"     "unknown"   "triangle"  "circle"    "circle"    "formation"
[75733] "light"     "triangle"  "triangle"  "formation" "triangle"  "light"    
[75739] "circle"    "circle"    "light"     "light"     "circle"    "formation"
[75745] "light"     "light"     "light"     "light"     "light"     "light"    
[75751] "light"     "unknown"   "formation" "circle"    "changing"  "triangle" 
[75757] "unknown"   NA          "triangle"  "other"     "cylinder"  "egg"      
[75763] "light"     "light"     "flash"     "light"     "fireball"  "flash"    
[75769] "flash"     "circle"    "disk"      "cigar"     "circle"    "other"    
[75775] "light"     "sphere"    "light"     "light"     "oval"      "light"    
[75781] "triangle"  "light"     "unknown"   "diamond"   "rectangle" "disk"     
[75787] "unknown"   "cigar"     "triangle"  "disk"      "light"     "triangle" 
[75793] "fireball"  "flash"     "unknown"   "light"     "disk"      "oval"     
[75799] "disk"      "disk"      "circle"    "triangle"  "formation" "changing" 
[75805] "sphere"    "unknown"   "triangle"  "circle"    "triangle"  "teardrop" 
[75811] "diamond"   "flash"     "fireball"  "other"     "fireball"  "fireball" 
[75817] "sphere"    "fireball"  "other"     "light"     "light"     "changing" 
[75823] "sphere"    "triangle"  "disk"      "cigar"     "unknown"   "sphere"   
[75829] "oval"      "cylinder"  "circle"    NA          "triangle"  "formation"
[75835] "sphere"    "light"     "light"     "fireball"  "fireball"  "unknown"  
[75841] "fireball"  "changing"  "cross"     "oval"      NA          "cylinder" 
[75847] "formation" "other"     "cylinder"  "other"     "teardrop"  "circle"   
[75853] "fireball"  "triangle"  "formation" "sphere"    "triangle"  "circle"   
[75859] "fireball"  "light"     NA          "teardrop"  "sphere"    "triangle" 
[75865] "circle"    "sphere"    "triangle"  "oval"      "egg"       "triangle" 
[75871] "formation" "oval"      "unknown"   "disk"      "teardrop"  "unknown"  
[75877] "light"     "circle"    "changing"  "formation" "other"     "triangle" 
[75883] "triangle"  "fireball"  "flash"     "fireball"  "triangle"  "circle"   
[75889] "disk"      "light"     "light"     "flash"     "light"     "circle"   
[75895] "cigar"     "sphere"    "fireball"  "other"     "cylinder"  "fireball" 
[75901] "light"     "rectangle" "fireball"  "light"     "teardrop"  "triangle" 
[75907] "light"     "sphere"    "changing"  "light"     "oval"      "disk"     
[75913] "light"     "cylinder"  "cigar"     "circle"    "disk"      "light"    
[75919] "formation" "disk"      "circle"    NA          NA          NA         
[75925] "circle"    "circle"    "unknown"   "disk"      "light"     "oval"     
[75931] "disk"      "fireball"  "flash"     "other"     "disk"      "light"    
[75937] "sphere"    "circle"    "other"     "circle"    "fireball"  "unknown"  
[75943] "oval"      "flash"     "oval"      "light"     "light"     "light"    
[75949] "sphere"    "light"     "cigar"     "unknown"   "other"     "rectangle"
[75955] "fireball"  "flash"     "circle"    "oval"      "light"     "diamond"  
[75961] "egg"       "other"     "oval"      "triangle"  "other"     "unknown"  
[75967] "triangle"  "other"     "other"     "light"     "light"     "triangle" 
[75973] "light"     "other"     "disk"      "light"     "flash"     "other"    
[75979] "formation" "other"     "light"     "circle"    "disk"      "light"    
[75985] "disk"      "formation" "light"     "unknown"   "circle"    "light"    
[75991] "oval"      "triangle"  "other"     NA          "circle"    "circle"   
[75997] "other"     "circle"    "light"     "triangle"  "cigar"     "other"    
[76003] "cigar"     "fireball"  "flash"     "sphere"    "light"     "formation"
[76009] "unknown"   "diamond"   "light"     "flash"     "cigar"     "other"    
[76015] "unknown"   "chevron"   "unknown"   "light"     "light"     "circle"   
[76021] "circle"    "unknown"   "other"     "unknown"   "light"     "fireball" 
[76027] NA          "light"     "circle"    "circle"    "light"     "fireball" 
[76033] "circle"    "circle"    "light"     "other"     "fireball"  "light"    
[76039] "circle"    "oval"      "oval"      "teardrop"  "chevron"   "disk"     
[76045] "light"     "oval"      "circle"    "fireball"  "fireball"  "light"    
[76051] "fireball"  "unknown"   "cone"      "fireball"  "triangle"  "other"    
[76057] "sphere"    "flash"     "oval"      "circle"    "unknown"   "sphere"   
[76063] "light"     "changing"  "circle"    "formation" "circle"    "rectangle"
[76069] "unknown"   "circle"    "oval"      "circle"    "flash"     "oval"     
[76075] "diamond"   "flash"     "changing"  "cigar"     "triangle"  "light"    
[76081] "flash"     "light"     "triangle"  "cylinder"  "circle"    "triangle" 
[76087] "fireball"  "rectangle" "circle"    "light"     "sphere"    "light"    
[76093] "sphere"    "chevron"   "light"     "fireball"  "light"     "circle"   
[76099] "fireball"  "other"     "other"     "disk"      "light"     "other"    
[76105] "cigar"     "disk"      NA          "teardrop"  "triangle"  "circle"   
[76111] "fireball"  "fireball"  "sphere"    "light"     "disk"      NA         
[76117] "sphere"    "fireball"  "other"     "oval"      "fireball"  "cylinder" 
[76123] "light"     "disk"      "other"     "formation" "light"     "light"    
[76129] "fireball"  "light"     "sphere"    "light"     "sphere"    "formation"
[76135] "light"     "sphere"    "fireball"  "light"     "sphere"    "cylinder" 
[76141] "sphere"    "unknown"   "unknown"   "light"     "circle"    "light"    
[76147] "disk"      "unknown"   "circle"    "unknown"   "light"     "circle"   
[76153] "disk"      "disk"      "light"     "teardrop"  "triangle"  "light"    
[76159] "rectangle" "oval"      "circle"    "rectangle" NA          NA         
[76165] NA          NA          NA          NA          "light"     "cigar"    
[76171] "other"     "light"     "other"     "light"     "light"     "fireball" 
[76177] "unknown"   "unknown"   "rectangle" "light"     "other"     "other"    
[76183] "circle"    "circle"    "sphere"    "light"     "fireball"  "cigar"    
[76189] "sphere"    "fireball"  "fireball"  "triangle"  "unknown"   "unknown"  
[76195] "unknown"   "flash"     NA          "light"     "sphere"    "unknown"  
[76201] "light"     NA          "light"     "oval"      "disk"      "changing" 
[76207] NA          "unknown"   "light"     "other"     "diamond"   "triangle" 
[76213] "light"     "light"     "unknown"   "unknown"   "light"     "changing" 
[76219] "light"     "light"     "flash"     "triangle"  "egg"       "light"    
[76225] "disk"      "cylinder"  "unknown"   "cigar"     "changing"  "other"    
[76231] "unknown"   "unknown"   "unknown"   "oval"      "disk"      "flash"    
[76237] "triangle"  "oval"      "light"     "oval"      "triangle"  "triangle" 
[76243] "circle"    NA          "disk"      "unknown"   "circle"    "light"    
[76249] "light"     "cigar"     "triangle"  "rectangle" "light"     "sphere"   
[76255] "unknown"   "circle"    "light"     "light"     "formation" "light"    
[76261] "triangle"  "unknown"   "light"     "light"     "diamond"   "circle"   
[76267] "light"     "formation" "circle"    "triangle"  "light"     "other"    
[76273] "disk"      "light"     "diamond"   "circle"    "light"     "light"    
[76279] "other"     "teardrop"  "circle"    "cigar"     "oval"      "diamond"  
[76285] "sphere"    "circle"    "formation" "changing"  "light"     "diamond"  
[76291] "cylinder"  "other"     "unknown"   "fireball"  "light"     "light"    
[76297] "triangle"  "triangle"  "disk"      "light"     "chevron"   "fireball" 
[76303] "light"     NA          "light"     "light"     "oval"      "light"    
[76309] "light"     "triangle"  "sphere"    "sphere"    "light"     "light"    
[76315] "flash"     "light"     "other"     "other"     "circle"    "teardrop" 
[76321] "light"     "light"     "light"     "oval"      "light"     "unknown"  
[76327] "light"     "light"     "circle"    "unknown"   "fireball"  "circle"   
[76333] "circle"    "fireball"  "oval"      "circle"    "light"     "circle"   
[76339] "light"     "oval"      "light"     "formation" "sphere"    "triangle" 
[76345] "light"     "other"     "fireball"  "fireball"  "triangle"  "light"    
[76351] "sphere"    "triangle"  "disk"      "disk"      "cylinder"  "rectangle"
[76357] "light"     "triangle"  "light"     "light"     "cigar"     "sphere"   
[76363] "light"     "cylinder"  "sphere"    "sphere"    "oval"      "unknown"  
[76369] "fireball"  "fireball"  "unknown"   "unknown"   "circle"    "changing" 
[76375] "fireball"  "circle"    "light"     "triangle"  "unknown"   "fireball" 
[76381] "triangle"  "light"     "cigar"     "light"     "sphere"    "other"    
[76387] "light"     "fireball"  "unknown"   "light"     "unknown"   "rectangle"
[76393] "oval"      "light"     "disk"      "triangle"  "disk"      "disk"     
[76399] "oval"      "circle"    "changing"  "changing"  "light"     NA         
[76405] NA          NA          NA          "unknown"   "triangle"  "triangle" 
[76411] "cigar"     "oval"      "oval"      "other"     "formation" "unknown"  
[76417] "circle"    "disk"      "oval"      "sphere"    "disk"      "cigar"    
[76423] "rectangle" "other"     "flash"     "flash"     "other"     "formation"
[76429] "light"     "fireball"  "formation" "triangle"  "formation" NA         
[76435] "light"     "chevron"   "teardrop"  "light"     "light"     "unknown"  
[76441] "oval"      "light"     "flash"     "unknown"   "oval"      NA         
[76447] "light"     NA          NA          "light"     "unknown"   "light"    
[76453] "other"     "light"     "other"     "light"     "disk"      "sphere"   
[76459] "oval"      "light"     "light"     "disk"      "circle"    "disk"     
[76465] "disk"      "light"     "triangle"  "oval"      NA          "diamond"  
[76471] "other"     "light"     "light"     "formation" "sphere"    "teardrop" 
[76477] NA          "light"     "fireball"  "triangle"  "light"     "circle"   
[76483] "triangle"  "other"     "triangle"  "light"     "light"     "rectangle"
[76489] "oval"      "light"     "triangle"  "disk"      "oval"      "light"    
[76495] "cone"      "circle"    "light"     "light"     "triangle"  "triangle" 
[76501] "sphere"    "light"     "light"     "light"     "unknown"   "cigar"    
[76507] "triangle"  "light"     "light"     "flash"     "other"     "disk"     
[76513] "sphere"    "rectangle" "triangle"  "unknown"   "other"     "oval"     
[76519] "light"     "light"     "light"     "sphere"    "flash"     "fireball" 
[76525] "unknown"   "cylinder"  "sphere"    "oval"      "circle"    "fireball" 
[76531] "unknown"   "chevron"   "sphere"    "light"     "fireball"  "oval"     
[76537] "light"     "rectangle" "rectangle" "triangle"  "other"     "sphere"   
[76543] "cylinder"  "fireball"  "fireball"  "sphere"    "sphere"    "fireball" 
[76549] "fireball"  "circle"    "light"     "circle"    "formation" "triangle" 
[76555] "light"     "light"     "disk"      "light"     "oval"      "sphere"   
[76561] "unknown"   "light"     "sphere"    "triangle"  "flash"     "light"    
[76567] "light"     "cylinder"  "circle"    "triangle"  "disk"      "other"    
[76573] "other"     "cylinder"  "circle"    "circle"    "triangle"  "formation"
[76579] "light"     "triangle"  "light"     "chevron"   "cigar"     "fireball" 
[76585] "triangle"  "other"     "fireball"  "light"     "unknown"   "changing" 
[76591] "circle"    "fireball"  "light"     "triangle"  "triangle"  "fireball" 
[76597] "formation" "sphere"    "light"     "fireball"  "light"     "triangle" 
[76603] "fireball"  "flash"     "fireball"  "other"     "light"     "light"    
[76609] "sphere"    "unknown"   "cylinder"  "cylinder"  "other"     "unknown"  
[76615] NA          "flash"     "sphere"    "light"     "circle"    "light"    
[76621] "unknown"   "light"     "light"     "formation" "light"     "triangle" 
[76627] "light"     "fireball"  "light"     "sphere"    "unknown"   "fireball" 
[76633] "fireball"  "circle"    "circle"    "light"     "other"     "cigar"    
[76639] "sphere"    "triangle"  "teardrop"  "disk"      "triangle"  "unknown"  
[76645] "other"     "triangle"  "unknown"   "egg"       "light"     "disk"     
[76651] "triangle"  "other"     NA          "light"     NA          "egg"      
[76657] "light"     "cigar"     "triangle"  "changing"  "light"     "triangle" 
[76663] "triangle"  "diamond"   "circle"    "triangle"  "changing"  "other"    
[76669] "unknown"   "oval"      "fireball"  "circle"    "oval"      "fireball" 
[76675] "formation" "light"     "oval"      "formation" "light"     "other"    
[76681] "circle"    "light"     "circle"    "circle"    "circle"    "disk"     
[76687] "disk"      "disk"      "disk"      "circle"    "other"     "unknown"  
[76693] "light"     "flash"     "disk"      "fireball"  "light"     "light"    
[76699] "light"     "flash"     "circle"    "diamond"   "oval"      "flash"    
[76705] "light"     "disk"      "cylinder"  "circle"    "disk"      "circle"   
[76711] "disk"      "disk"      "light"     "sphere"    "fireball"  NA         
[76717] "fireball"  "fireball"  "light"     "circle"    "circle"    "light"    
[76723] "rectangle" "light"     "light"     "light"     NA          "light"    
[76729] "unknown"   "light"     "light"     "cylinder"  "light"     "cigar"    
[76735] "triangle"  "light"     "light"     "changing"  "triangle"  "other"    
[76741] "disk"      "circle"    "cylinder"  "circle"    "triangle"  "other"    
[76747] "unknown"   "unknown"   "changing"  "sphere"    "light"     "sphere"   
[76753] "cigar"     "light"     "sphere"    "cylinder"  "flash"     "flash"    
[76759] "flash"     NA          "circle"    "unknown"   "oval"      "formation"
[76765] "disk"      "sphere"    "formation" "other"     "fireball"  "rectangle"
[76771] "circle"    "circle"    "unknown"   "unknown"   "cigar"     "cigar"    
[76777] "oval"      "changing"  "circle"    "other"     "light"     "fireball" 
[76783] "triangle"  "fireball"  "circle"    "circle"    "triangle"  "other"    
[76789] "circle"    "light"     "oval"      "changing"  "cigar"     "cigar"    
[76795] "light"     "light"     "other"     "circle"    "light"     "light"    
[76801] "unknown"   NA          "disk"      "triangle"  "flash"     "changing" 
[76807] "fireball"  "circle"    "triangle"  "light"     "light"     "light"    
[76813] "light"     "fireball"  "fireball"  "light"     "triangle"  "light"    
[76819] "other"     "other"     "circle"    "triangle"  "light"     "sphere"   
[76825] "circle"    "fireball"  "formation" "fireball"  "cigar"     "disk"     
[76831] "rectangle" "circle"    NA          "disk"      "disk"      "other"    
[76837] "fireball"  "diamond"   "chevron"   "other"     "fireball"  "fireball" 
[76843] "sphere"    "fireball"  "circle"    "sphere"    "circle"    "circle"   
[76849] "circle"    "circle"    "light"     "fireball"  "other"     "oval"     
[76855] "circle"    "fireball"  "disk"      "light"     "circle"    "changing" 
[76861] "circle"    "sphere"    "circle"    "sphere"    "light"     "formation"
[76867] "oval"      "fireball"  "light"     "teardrop"  "light"     "light"    
[76873] "light"     "other"     "fireball"  "circle"    "sphere"    "fireball" 
[76879] "circle"    "other"     "light"     "circle"    "circle"    "sphere"   
[76885] "circle"    "light"     "light"     "light"     "fireball"  "circle"   
[76891] "circle"    "formation" "circle"    "triangle"  "fireball"  "light"    
[76897] "fireball"  "sphere"    "circle"    "fireball"  "light"     "light"    
[76903] "light"     "light"     "sphere"    "unknown"   "disk"      "unknown"  
[76909] "disk"      "disk"      "oval"      "triangle"  "diamond"   "disk"     
[76915] "disk"      "triangle"  "oval"      "disk"      "other"     "triangle" 
[76921] "light"     "rectangle" NA          "light"     "light"     "other"    
[76927] "egg"       "egg"       "sphere"    "other"     "other"     "triangle" 
[76933] "unknown"   NA          NA          NA          NA          NA         
[76939] "circle"    "unknown"   "disk"      "sphere"    "other"     NA         
[76945] "light"     "triangle"  "teardrop"  NA          NA          NA         
[76951] NA          "diamond"   NA          "other"     "flash"     "disk"     
[76957] "other"     "triangle"  "unknown"   "disk"      "sphere"    "unknown"  
[76963] "unknown"   "sphere"    "flash"     "sphere"    "sphere"    "light"    
[76969] "light"     "light"     "other"     "light"     "triangle"  "flash"    
[76975] "triangle"  "circle"    "disk"      "triangle"  "flash"     "triangle" 
[76981] "unknown"   "triangle"  "light"     "fireball"  "cigar"     "disk"     
[76987] "light"     "unknown"   "light"     "fireball"  "fireball"  "disk"     
[76993] "triangle"  "light"     "circle"    "circle"    "other"     "fireball" 
[76999] "egg"       "triangle"  "light"     NA          NA          "disk"     
[77005] "circle"    "egg"       "circle"    "disk"      "unknown"   "other"    
[77011] "cone"      "flash"     "light"     "triangle"  "light"     "triangle" 
[77017] "other"     "disk"      "circle"    "light"     "circle"    "unknown"  
[77023] "triangle"  "triangle"  "light"     "disk"      "changing"  "circle"   
[77029] "oval"      "cylinder"  "light"     NA          "triangle"  "circle"   
[77035] "cigar"     "light"     "triangle"  "egg"       "triangle"  "other"    
[77041] "triangle"  "disk"      "other"     "unknown"   "light"     "sphere"   
[77047] "circle"    "triangle"  "circle"    NA          "light"     "disk"     
[77053] "other"     "triangle"  "other"     "circle"    "unknown"   "unknown"  
[77059] "triangle"  "light"     "light"     "light"     "sphere"    "fireball" 
[77065] "light"     "triangle"  "rectangle" "egg"       "disk"      "changing" 
[77071] "sphere"    "other"     "light"     "triangle"  "sphere"    "teardrop" 
[77077] "light"     "light"     "circle"    "light"     "rectangle" NA         
[77083] "triangle"  "triangle"  "unknown"   "light"     "light"     "other"    
[77089] "circle"    "light"     "light"     "light"     "light"     "rectangle"
[77095] "flash"     "fireball"  "formation" "light"     "sphere"    "disk"     
[77101] "changing"  "circle"    "other"     "triangle"  "fireball"  "circle"   
[77107] "light"     "circle"    "fireball"  "triangle"  "sphere"    "light"    
[77113] "fireball"  "light"     "egg"       "flash"     "disk"      "light"    
[77119] "light"     "light"     "circle"    "triangle"  "other"     "unknown"  
[77125] "disk"      "sphere"    "fireball"  "light"     "light"     "triangle" 
[77131] "unknown"   "light"     "circle"    "cross"     "circle"    "circle"   
[77137] "triangle"  "oval"      "sphere"    "light"     "sphere"    "circle"   
[77143] "light"     "oval"      "triangle"  "rectangle" "cylinder"  "fireball" 
[77149] "sphere"    "circle"    "sphere"    "circle"    "fireball"  "unknown"  
[77155] "light"     "sphere"    "unknown"   "formation" "circle"    "light"    
[77161] "sphere"    "light"     "unknown"   "fireball"  "fireball"  "sphere"   
[77167] "fireball"  "fireball"  "sphere"    "fireball"  "fireball"  "cigar"    
[77173] "fireball"  "circle"    "light"     "fireball"  "fireball"  "circle"   
[77179] "light"     "unknown"   "light"     "circle"    "light"     "light"    
[77185] "fireball"  "oval"      "fireball"  "other"     "light"     "light"    
[77191] "changing"  "oval"      "light"     "sphere"    "cylinder"  NA         
[77197] "changing"  NA          "circle"    "sphere"    "triangle"  "light"    
[77203] "light"     "circle"    "rectangle" "fireball"  "formation" "oval"     
[77209] "circle"    "other"     "fireball"  "formation" "disk"      "circle"   
[77215] "disk"      "sphere"    NA          "disk"      "triangle"  "cigar"    
[77221] NA          NA          NA          NA          NA          NA         
[77227] NA          "light"     "light"     "diamond"   "fireball"  "fireball" 
[77233] "light"     "disk"      "light"     "disk"      "disk"      "light"    
[77239] "triangle"  "circle"    "fireball"  "light"     "light"     "light"    
[77245] NA          NA          "disk"      "triangle"  "light"     "unknown"  
[77251] "oval"      "other"     "teardrop"  "flash"     "light"     "fireball" 
[77257] "light"     "fireball"  "changing"  "changing"  "teardrop"  "light"    
[77263] "triangle"  "oval"      "changing"  "unknown"   "other"     "unknown"  
[77269] "cylinder"  NA          "other"     "circle"    "egg"       "circle"   
[77275] "flash"     "unknown"   "light"     "unknown"   "light"     "light"    
[77281] "triangle"  "flash"     "light"     "light"     "unknown"   "unknown"  
[77287] "unknown"   "light"     "egg"       "changing"  NA          "triangle" 
[77293] "unknown"   "light"     "triangle"  "fireball"  "flash"     "light"    
[77299] "sphere"    "cigar"     "light"     "oval"      "oval"      "other"    
[77305] "oval"      "unknown"   "light"     "triangle"  "sphere"    "light"    
[77311] "sphere"    "triangle"  "light"     "changing"  "fireball"  "fireball" 
[77317] "chevron"   "egg"       "diamond"   "light"     "light"     "formation"
[77323] "diamond"   "sphere"    "sphere"    "formation" "light"     "light"    
[77329] "circle"    "flash"     "unknown"   "sphere"    "cigar"     "circle"   
[77335] "other"     "cigar"     "changing"  "light"     "changing"  "formation"
[77341] "circle"    "light"     "diamond"   "oval"      "light"     "light"    
[77347] "triangle"  "light"     "cigar"     "circle"    "light"     "light"    
[77353] "cigar"     "sphere"    "cylinder"  "triangle"  "changing"  "diamond"  
[77359] "light"     "sphere"    "light"     "formation" "cigar"     "light"    
[77365] "light"     "cigar"     "light"     "circle"    "light"     "circle"   
[77371] "sphere"    "flash"     "circle"    "light"     "fireball"  "fireball" 
[77377] "circle"    "other"     "light"     "unknown"   "other"     "cylinder" 
[77383] "light"     "circle"    "light"     "triangle"  "other"     "formation"
[77389] "light"     "oval"      "circle"    "fireball"  "triangle"  "changing" 
[77395] "changing"  "unknown"   "triangle"  "unknown"   "changing"  "fireball" 
[77401] "circle"    "other"     "unknown"   "fireball"  "light"     "light"    
[77407] "circle"    "teardrop"  "fireball"  "light"     "fireball"  "circle"   
[77413] "circle"    "fireball"  "circle"    "flash"     "circle"    "light"    
[77419] "fireball"  "rectangle" "light"     "light"     "circle"    "other"    
[77425] "light"     "diamond"   "light"     "fireball"  "sphere"    "light"    
[77431] "light"     "circle"    "light"     "light"     "oval"      "light"    
[77437] "cylinder"  "unknown"   "fireball"  NA          NA          NA         
[77443] NA          "fireball"  "cigar"     "fireball"  "circle"    "triangle" 
[77449] "light"     "light"     "chevron"   "fireball"  "triangle"  "other"    
[77455] "light"     "changing"  "fireball"  "other"     "light"     "circle"   
[77461] "circle"    "light"     "fireball"  "triangle"  "triangle"  "light"    
[77467] "sphere"    "light"     "light"     "light"     "formation" "triangle" 
[77473] "triangle"  "flash"     "light"     "rectangle" "sphere"    "sphere"   
[77479] "light"     "triangle"  "fireball"  "flash"     "unknown"   "diamond"  
[77485] "oval"      "circle"    "light"     "light"     "unknown"   "light"    
[77491] "disk"      "triangle"  "teardrop"  "light"     "flash"     "light"    
[77497] "light"     "disk"      "cylinder"  "triangle"  "triangle"  "light"    
[77503] "light"     "disk"      "flash"     "changing"  "changing"  "formation"
[77509] "circle"    "disk"      "circle"    "circle"    "cylinder"  "triangle" 
[77515] "changing"  "disk"      "disk"      NA          "circle"    "other"    
[77521] "other"     "formation" "light"     "light"     "circle"    "circle"   
[77527] "sphere"    "unknown"   NA          "light"     "flash"     "cigar"    
[77533] "light"     "disk"      "oval"      "circle"    "circle"    "flash"    
[77539] NA          "sphere"    "fireball"  "other"     "changing"  "rectangle"
[77545] "light"     "disk"      "chevron"   "unknown"   "light"     "circle"   
[77551] "sphere"    "circle"    "fireball"  "cylinder"  "cylinder"  "disk"     
[77557] "disk"      "unknown"   "formation" "diamond"   "light"     "light"    
[77563] "other"     "light"     "diamond"   "light"     NA          "triangle" 
[77569] "light"     "circle"    "diamond"   "cigar"     "light"     "light"    
[77575] "unknown"   "light"     "other"     "cigar"     "fireball"  "light"    
[77581] "flash"     "teardrop"  "light"     "light"     "fireball"  "fireball" 
[77587] "triangle"  "diamond"   "light"     "changing"  "light"     "light"    
[77593] "oval"      "light"     "light"     "light"     "other"     "sphere"   
[77599] "circle"    "light"     "light"     "diamond"   "circle"    "light"    
[77605] "circle"    NA          "circle"    "light"     "disk"      "flash"    
[77611] "light"     "diamond"   "triangle"  "other"     "rectangle" "sphere"   
[77617] "fireball"  "fireball"  "triangle"  "light"     "light"     "changing" 
[77623] "light"     "fireball"  "other"     "sphere"    "sphere"    "circle"   
[77629] "light"     "teardrop"  "light"     "circle"    "light"     "triangle" 
[77635] "circle"    "fireball"  "triangle"  "cylinder"  "other"     "formation"
[77641] "unknown"   "teardrop"  "fireball"  "circle"    "sphere"    "light"    
[77647] "triangle"  "light"     "fireball"  "other"     "teardrop"  "light"    
[77653] "unknown"   "unknown"   "sphere"    "cylinder"  "light"     "unknown"  
[77659] "formation" "light"     "fireball"  "triangle"  NA          "light"    
[77665] "sphere"    "fireball"  "fireball"  "oval"      "sphere"    "light"    
[77671] "unknown"   "fireball"  "fireball"  "other"     "circle"    "cigar"    
[77677] "oval"      "circle"    "disk"      "changing"  "changing"  "cigar"    
[77683] "disk"      "sphere"    "oval"      "chevron"   "rectangle" NA         
[77689] NA          NA          "triangle"  "circle"    "light"     "triangle" 
[77695] "sphere"    "sphere"    "light"     "triangle"  "other"     "fireball" 
[77701] "fireball"  "triangle"  "other"     "chevron"   "circle"    "unknown"  
[77707] "sphere"    NA          "cigar"     "light"     "flash"     "circle"   
[77713] "circle"    "fireball"  "triangle"  "light"     "other"     "light"    
[77719] "disk"      "cigar"     "triangle"  "rectangle" "fireball"  "changing" 
[77725] "other"     "disk"      "oval"      "triangle"  "unknown"   "fireball" 
[77731] "changing"  "sphere"    "light"     "light"     "light"     "triangle" 
[77737] "triangle"  "flash"     "sphere"    "rectangle" "unknown"   "circle"   
[77743] "light"     "unknown"   "light"     "light"     "fireball"  "light"    
[77749] "disk"      "other"     "oval"      "other"     "other"     "light"    
[77755] "light"     "cigar"     "light"     "light"     "changing"  "cigar"    
[77761] "unknown"   "light"     "triangle"  "light"     "teardrop"  "circle"   
[77767] "unknown"   "light"     "other"     "triangle"  "other"     "circle"   
[77773] "light"     "light"     "formation" "light"     "oval"      "chevron"  
[77779] NA          "changing"  "disk"      "oval"      "light"     "diamond"  
[77785] "diamond"   "flash"     "unknown"   "unknown"   NA          "triangle" 
[77791] "light"     "circle"    "chevron"   "triangle"  "formation" "other"    
[77797] "changing"  "circle"    "other"     "egg"       "triangle"  "rectangle"
[77803] "triangle"  "rectangle" "sphere"    "cigar"     "unknown"   "light"    
[77809] "oval"      "other"     "fireball"  "oval"      "flash"     "sphere"   
[77815] "light"     "triangle"  "triangle"  "disk"      "fireball"  "circle"   
[77821] "changing"  "fireball"  "fireball"  "light"     "disk"      "triangle" 
[77827] "flash"     "light"     "formation" "formation" "unknown"   "triangle" 
[77833] "triangle"  "rectangle" "formation" "fireball"  "changing"  "fireball" 
[77839] "light"     "other"     "oval"      "fireball"  "other"     "triangle" 
[77845] "disk"      "disk"      "rectangle" NA          "light"     "fireball" 
[77851] "formation" "formation" "other"     "light"     "fireball"  "fireball" 
[77857] "light"     "disk"      "fireball"  "unknown"   "fireball"  "circle"   
[77863] "light"     "other"     "disk"      "light"     "oval"      "triangle" 
[77869] "sphere"    NA          "sphere"    "circle"    "circle"    "sphere"   
[77875] "other"     "sphere"    "light"     "triangle"  "circle"    "light"    
[77881] "light"     "light"     "light"     "circle"    "light"     "chevron"  
[77887] "fireball"  "flash"     "oval"      "oval"      "circle"    "fireball" 
[77893] "fireball"  "disk"      "light"     "light"     "cylinder"  "other"    
[77899] "light"     "other"     "triangle"  "light"     "other"     "light"    
[77905] "other"     "cigar"     "triangle"  "fireball"  "light"     "disk"     
[77911] "fireball"  "other"     "sphere"    "disk"      "cylinder"  "fireball" 
[77917] "light"     "formation" "disk"      "cigar"     "disk"      "unknown"  
[77923] "triangle"  "light"     "triangle"  NA          NA          NA         
[77929] "changing"  "disk"      "fireball"  "chevron"   "diamond"   "changing" 
[77935] "sphere"    "changing"  "light"     "light"     "triangle"  "fireball" 
[77941] "light"     "fireball"  "circle"    "unknown"   "light"     "triangle" 
[77947] "unknown"   "light"     "disk"      "other"     NA          "cylinder" 
[77953] "changing"  "triangle"  "triangle"  "light"     "oval"      "unknown"  
[77959] "cigar"     "light"     "egg"       "triangle"  "disk"      "other"    
[77965] "light"     "cigar"     "triangle"  "changing"  "diamond"   "light"    
[77971] "light"     "light"     "circle"    "light"     "unknown"   "triangle" 
[77977] "triangle"  "fireball"  "changing"  "sphere"    "triangle"  "other"    
[77983] "triangle"  "circle"    "diamond"   "oval"      "rectangle" "light"    
[77989] "sphere"    "light"     "formation" "light"     "other"     "light"    
[77995] "light"     "circle"    "oval"      "fireball"  "unknown"   "other"    
[78001] "oval"      "egg"       "sphere"    "changing"  "diamond"   "light"    
[78007] "light"     "light"     "oval"      "other"     "teardrop"  "cigar"    
[78013] "cigar"     "triangle"  "oval"      "oval"      "light"     "sphere"   
[78019] "sphere"    "cylinder"  "circle"    "sphere"    "triangle"  "triangle" 
[78025] "light"     "flash"     "light"     "sphere"    "oval"      "light"    
[78031] "triangle"  "flash"     "circle"    NA          "sphere"    "rectangle"
[78037] "cigar"     "other"     "circle"    "rectangle" "other"     "disk"     
[78043] "fireball"  "sphere"    "cylinder"  "triangle"  "circle"    "circle"   
[78049] "light"     "sphere"    "sphere"    "light"     "unknown"   "fireball" 
[78055] "circle"    "other"     "sphere"    "flash"     "circle"    "cylinder" 
[78061] "other"     "light"     "unknown"   "disk"      "triangle"  "triangle" 
[78067] "formation" "light"     "circle"    "triangle"  "light"     "formation"
[78073] "light"     "circle"    "diamond"   "triangle"  "light"     "light"    
[78079] "changing"  "unknown"   "light"     "cylinder"  "circle"    "light"    
[78085] "disk"      "light"     "light"     "light"     "triangle"  "unknown"  
[78091] "light"     "unknown"   "light"     "triangle"  "fireball"  "unknown"  
[78097] "light"     "egg"       "disk"      "disk"      "cross"     "light"    
[78103] "sphere"    "circle"    "cross"     "changing"  "disk"      "oval"     
[78109] "fireball"  "sphere"    "sphere"    "fireball"  "sphere"    "light"    
[78115] "other"     NA          "light"     "cylinder"  "light"     "light"    
[78121] "unknown"   NA          "circle"    "light"     "light"     "oval"     
[78127] "sphere"    "fireball"  "unknown"   "light"     "triangle"  "unknown"  
[78133] "disk"      "unknown"   "circle"    "light"     "light"     "cigar"    
[78139] "rectangle" "cigar"     "other"     "unknown"   "circle"    "unknown"  
[78145] "cigar"     "light"     "unknown"   "teardrop"  "disk"      NA         
[78151] NA          NA          "triangle"  "sphere"    "light"     "sphere"   
[78157] "formation" "other"     "diamond"   "light"     "triangle"  "egg"      
[78163] "light"     "light"     "light"     "triangle"  "fireball"  "light"    
[78169] "light"     "circle"    "sphere"    "cone"      "unknown"   "cylinder" 
[78175] "triangle"  "circle"    "light"     "teardrop"  "unknown"   "triangle" 
[78181] "light"     "oval"      "circle"    "triangle"  "sphere"    "triangle" 
[78187] "other"     "triangle"  "unknown"   "unknown"   "circle"    "light"    
[78193] "triangle"  "unknown"   "circle"    "other"     "chevron"   "light"    
[78199] "light"     "circle"    "disk"      "triangle"  "changing"  "cylinder" 
[78205] "cylinder"  "formation" "sphere"    "changing"  "cigar"     "oval"     
[78211] "unknown"   "other"     "unknown"   "fireball"  "circle"    "disk"     
[78217] "oval"      "egg"       "light"     "circle"    "formation" "triangle" 
[78223] "circle"    "formation" "light"     "light"     "formation" "light"    
[78229] "triangle"  "light"     "other"     "other"     "formation" "triangle" 
[78235] "other"     "formation" "light"     "unknown"   "fireball"  "light"    
[78241] "fireball"  NA          "light"     "sphere"    "other"     "other"    
[78247] "triangle"  "chevron"   "egg"       "triangle"  "light"     "unknown"  
[78253] "sphere"    "unknown"   "oval"      "disk"      NA          "unknown"  
[78259] "formation" "other"     "unknown"   "flash"     "oval"      "egg"      
[78265] "flash"     "triangle"  "other"     "sphere"    "disk"      "cylinder" 
[78271] "chevron"   "cylinder"  "oval"      "diamond"   "light"     "unknown"  
[78277] "diamond"   "sphere"    "light"     "flash"     "circle"    "other"    
[78283] "light"     "circle"    "unknown"   "light"     "oval"      "triangle" 
[78289] "formation" "triangle"  "changing"  "other"     "changing"  NA         
[78295] "light"     "light"     "light"     "fireball"  "egg"       "other"    
[78301] "light"     "circle"    "light"     "unknown"   "light"     "rectangle"
[78307] "other"     "circle"    "circle"    "formation" "light"     "unknown"  
[78313] "cigar"     "circle"    "light"     "triangle"  "oval"      "fireball" 
[78319] "circle"    "cone"      "other"     "unknown"   "light"     "fireball" 
[78325] "unknown"   "fireball"  "unknown"   "fireball"  "triangle"  "flash"    
[78331] "unknown"   "cigar"     "light"     "fireball"  "light"     "fireball" 
[78337] "unknown"   "light"     "light"     "light"     "unknown"   "rectangle"
[78343] "triangle"  "chevron"   "other"     "light"     "triangle"  "light"    
[78349] "triangle"  "light"     "triangle"  "light"     "unknown"   "disk"     
[78355] "fireball"  "light"     "sphere"    "fireball"  "fireball"  "light"    
[78361] "fireball"  "fireball"  "light"     "circle"    "formation" "light"    
[78367] "light"     "formation" "other"     "circle"    "light"     "changing" 
[78373] "circle"    "triangle"  "cigar"     NA          "light"     "light"    
[78379] "fireball"  "fireball"  "formation" "sphere"    "triangle"  "light"    
[78385] "fireball"  "fireball"  "circle"    "circle"    "formation" "sphere"   
[78391] "changing"  "light"     "light"     "fireball"  "circle"    "light"    
[78397] "fireball"  "flash"     "chevron"   "flash"     "cylinder"  NA         
[78403] "disk"      "unknown"   "cylinder"  "circle"    NA          NA         
[78409] NA          "egg"       "formation" "light"     "light"     "rectangle"
[78415] "rectangle" "oval"      "disk"      "unknown"   "light"     "light"    
[78421] "light"     "circle"    "circle"    "fireball"  "triangle"  "chevron"  
[78427] "other"     "light"     "light"     "disk"      "triangle"  "sphere"   
[78433] "triangle"  "sphere"    "other"     "light"     "cigar"     "light"    
[78439] "light"     "unknown"   "changing"  "disk"      "unknown"   "disk"     
[78445] "fireball"  "circle"    "light"     "unknown"   "fireball"  "fireball" 
[78451] "other"     "light"     "unknown"   "light"     "circle"    "other"    
[78457] "cigar"     "circle"    "cigar"     "disk"      "light"     "light"    
[78463] "light"     "other"     "unknown"   "teardrop"  "other"     "triangle" 
[78469] "sphere"    "light"     "light"     "light"     "triangle"  "fireball" 
[78475] "disk"      "light"     "teardrop"  "triangle"  "circle"    "other"    
[78481] "light"     "other"     "circle"    "cigar"     "circle"    "other"    
[78487] "light"     "other"     "other"     "other"     "other"     "other"    
[78493] "other"     "other"     "other"     "other"     "disk"      "other"    
[78499] "other"     "other"     "light"     "changing"  "other"     "other"    
[78505] "formation" "other"     "other"     "other"     "changing"  "other"    
[78511] "other"     "egg"       "other"     "other"     "light"     "light"    
[78517] "cylinder"  "cone"      "changing"  "other"     "changing"  "other"    
[78523] "fireball"  "other"     NA          "other"     "triangle"  "triangle" 
[78529] "triangle"  "other"     "circle"    "other"     "light"     "other"    
[78535] "circle"    "rectangle" "light"     "light"     NA          "unknown"  
[78541] "light"     "disk"      "changing"  "light"     "light"     "circle"   
[78547] "unknown"   "triangle"  "changing"  "light"     "cigar"     "rectangle"
[78553] "sphere"    "changing"  "triangle"  "circle"    "fireball"  "light"    
[78559] "other"     NA          "teardrop"  "light"     "triangle"  "light"    
[78565] "unknown"   "light"     "sphere"    "light"     "sphere"    "fireball" 
[78571] "triangle"  "disk"      "cylinder"  "triangle"  "cigar"     "light"    
[78577] "formation" "triangle"  "light"     "cross"     NA          "changing" 
[78583] "circle"    "cigar"     "flash"     "light"     "light"     "light"    
[78589] "oval"      "other"     "light"     "cigar"     "sphere"    "sphere"   
[78595] "light"     "triangle"  "cigar"     "chevron"   "triangle"  "light"    
[78601] "diamond"   "rectangle" "disk"      NA          "triangle"  "light"    
[78607] "light"     "fireball"  "cigar"     "triangle"  "light"     "other"    
[78613] "fireball"  "fireball"  "light"     "other"     "oval"      "light"    
[78619] "diamond"   "circle"    "unknown"   "fireball"  "teardrop"  "light"    
[78625] "other"     NA          "fireball"  "light"     "light"     "disk"     
[78631] "cigar"     "cigar"     "rectangle" "flash"     "oval"      "fireball" 
[78637] "formation" "triangle"  "cigar"     "fireball"  "sphere"    "fireball" 
[78643] "circle"    "triangle"  "unknown"   "light"     "triangle"  "light"    
[78649] "flash"     "circle"    "circle"    "circle"    "oval"      "other"    
[78655] "light"     "changing"  "rectangle" "fireball"  "triangle"  "light"    
[78661] "formation" "light"     "fireball"  "light"     "light"     "changing" 
[78667] "triangle"  "circle"    "oval"      "circle"    "light"     "light"    
[78673] "light"     "circle"    "circle"    "fireball"  NA          "unknown"  
[78679] "other"     "teardrop"  "other"     "fireball"  "circle"    "rectangle"
[78685] "light"     "unknown"   "disk"      "disk"      "disk"      "fireball" 
[78691] "disk"      "changing"  "sphere"    "oval"      "unknown"   "cylinder" 
[78697] "triangle"  NA          "sphere"    "disk"      "cylinder"  "light"    
[78703] "light"     "other"     "changing"  "unknown"   "light"     "fireball" 
[78709] "light"     "light"     NA          "disk"      "light"     "light"    
[78715] "light"     "unknown"   "cigar"     "disk"      "disk"      "disk"     
[78721] "disk"      "circle"    "light"     "unknown"   "other"     "flash"    
[78727] "circle"    "fireball"  "sphere"    "cylinder"  "unknown"   "light"    
[78733] "light"     "circle"    "cigar"     "unknown"   "circle"    "oval"     
[78739] "unknown"   "light"     "light"     "formation" "triangle"  "light"    
[78745] "circle"    "light"     "light"     "other"     "unknown"   "light"    
[78751] "circle"    "light"     "light"     NA          "circle"    "other"    
[78757] "chevron"   "triangle"  "other"     "egg"       "disk"      "sphere"   
[78763] "circle"    "formation" "light"     "formation" "light"     "fireball" 
[78769] "light"     "light"     "light"     "light"     "light"     "cylinder" 
[78775] "flash"     "light"     "changing"  "changing"  "changing"  "sphere"   
[78781] "sphere"    "disk"      "light"     "disk"      "chevron"   "triangle" 
[78787] "circle"    "other"     "light"     "light"     "triangle"  "light"    
[78793] "light"     "fireball"  "unknown"   "light"     "light"     "teardrop" 
[78799] "sphere"    "formation" "other"     "light"     "cigar"     "light"    
[78805] "teardrop"  "light"     "triangle"  "formation" "circle"    "light"    
[78811] "triangle"  "fireball"  "light"     "fireball"  "circle"    "unknown"  
[78817] "cylinder"  "cigar"     "disk"      "fireball"  "teardrop"  "teardrop" 
[78823] "oval"      "light"     "flash"     "oval"      "fireball"  "oval"     
[78829] "cigar"     "unknown"   "sphere"    "sphere"    "changing"  "light"    
[78835] "triangle"  "circle"    "light"     "triangle"  "triangle"  "circle"   
[78841] "sphere"    "other"     "fireball"  "light"     "sphere"    "light"    
[78847] "light"     "triangle"  "unknown"   "rectangle" "unknown"   "fireball" 
[78853] "fireball"  "changing"  "circle"    "fireball"  "circle"    "circle"   
[78859] "light"     "oval"      "unknown"   "formation" "light"     "formation"
[78865] "light"     "triangle"  "sphere"    "disk"      "circle"    "light"    
[78871] "formation" "unknown"   "oval"      "formation" "unknown"   "light"    
[78877] "sphere"    "triangle"  "chevron"   "sphere"    "changing"  "unknown"  
[78883] "chevron"   "triangle"  "disk"      "sphere"    "cigar"     "unknown"  
[78889] "circle"    "fireball"  "sphere"    "light"     "light"     "cigar"    
[78895] "light"     "fireball"  "oval"      "fireball"  "fireball"  "circle"   
[78901] "circle"    "fireball"  "light"     "oval"      "fireball"  "flash"    
[78907] "fireball"  "unknown"   "fireball"  "unknown"   "light"     "cone"     
[78913] "disk"      "light"     "diamond"   "disk"      "cigar"     "circle"   
[78919] "circle"    "changing"  "circle"    "other"     "sphere"    "fireball" 
[78925] "other"     "cylinder"  "sphere"    "rectangle" "fireball"  "light"    
[78931] "fireball"  "light"     "light"     "changing"  "fireball"  "fireball" 
[78937] "light"     "light"     "sphere"    "light"     "fireball"  "cylinder" 
[78943] "fireball"  "fireball"  "cigar"     "circle"    "light"     "disk"     
[78949] "other"     NA          "light"     "circle"    "chevron"   "light"    
[78955] "circle"    "sphere"    NA          NA          NA          NA         
[78961] NA          "rectangle" NA          NA          NA          NA         
[78967] "oval"      "triangle"  "oval"      "formation" "sphere"    "egg"      
[78973] "light"     "flash"     "light"     "circle"    "triangle"  "formation"
[78979] "unknown"   "oval"      "light"     "light"     "sphere"    "flash"    
[78985] "cigar"     "light"     "oval"      "light"     "formation" "cylinder" 
[78991] "diamond"   "diamond"   "other"     "circle"    "cigar"     "rectangle"
[78997] "disk"      "oval"      "cylinder"  "disk"      "unknown"   NA         
[79003] "light"     NA          NA          "circle"    "disk"      "disk"     
[79009] "disk"      "sphere"    NA          "circle"    "formation" "formation"
[79015] "light"     "sphere"    "unknown"   "disk"      "disk"      "rectangle"
[79021] "disk"      "other"     "cigar"     "other"     "light"     "other"    
[79027] "disk"      "cone"      "light"     "light"     "sphere"    "circle"   
[79033] "light"     "formation" "light"     "flash"     "disk"      "unknown"  
[79039] "light"     NA          "disk"      "unknown"   "light"     "disk"     
[79045] "other"     "egg"       "light"     "cigar"     "disk"      "triangle" 
[79051] "triangle"  "diamond"   "egg"       "formation" "cigar"     "formation"
[79057] "cylinder"  "light"     "disk"      "light"     "light"     "unknown"  
[79063] "disk"      "disk"      "sphere"    "unknown"   "unknown"   "light"    
[79069] "fireball"  "light"     "circle"    "fireball"  "triangle"  "sphere"   
[79075] "light"     "oval"      "light"     "light"     "circle"    "circle"   
[79081] "unknown"   "circle"    "changing"  "changing"  NA          "cigar"    
[79087] "light"     "disk"      "sphere"    "light"     "light"     "fireball" 
[79093] "light"     "unknown"   "light"     "light"     "formation" "formation"
[79099] "unknown"   "other"     "flash"     "unknown"   "diamond"   NA         
[79105] "unknown"   "other"     "other"     "sphere"    "changing"  "light"    
[79111] "other"     "light"     "formation" "cone"      "circle"    "other"    
[79117] "light"     "triangle"  "light"     "light"     "triangle"  "disk"     
[79123] "unknown"   "unknown"   "light"     NA          "sphere"    "light"    
[79129] "circle"    "flash"     "changing"  "other"     "triangle"  "other"    
[79135] "oval"      "oval"      "changing"  "fireball"  "light"     "other"    
[79141] "rectangle" "light"     "fireball"  "fireball"  "fireball"  "triangle" 
[79147] "light"     "formation" "flash"     NA          "sphere"    "circle"   
[79153] "cigar"     "chevron"   "light"     "formation" "oval"      "sphere"   
[79159] "light"     "cylinder"  "circle"    "fireball"  "fireball"  "light"    
[79165] "sphere"    "fireball"  "fireball"  "formation" "flash"     "light"    
[79171] "light"     "cone"      "triangle"  "formation" "light"     "circle"   
[79177] "triangle"  "oval"      "light"     "circle"    "circle"    "fireball" 
[79183] "fireball"  "other"     "light"     "fireball"  "flash"     "teardrop" 
[79189] "egg"       "diamond"   "circle"    "circle"    "fireball"  "circle"   
[79195] "circle"    "oval"      "formation" "circle"    "sphere"    "rectangle"
[79201] "sphere"    "light"     "light"     "light"     "light"     "formation"
[79207] "sphere"    "other"     "light"     "light"     "fireball"  "disk"     
[79213] "sphere"    "oval"      "chevron"   "chevron"   "teardrop"  "disk"     
[79219] "oval"      "oval"      "egg"       "rectangle" "circle"    "other"    
[79225] "rectangle" "cigar"     "other"     "light"     "fireball"  "other"    
[79231] "circle"    "light"     "triangle"  "other"     "light"     NA         
[79237] "unknown"   NA          "sphere"    "diamond"   "formation" "other"    
[79243] "light"     "light"     "triangle"  "light"     "unknown"   "changing" 
[79249] "egg"       "other"     "other"     "other"     "circle"    "sphere"   
[79255] "circle"    "formation" "cone"      "triangle"  "circle"    "light"    
[79261] "formation" "light"     "light"     "diamond"   "other"     "light"    
[79267] "diamond"   "sphere"    "light"     "formation" "cylinder"  "cylinder" 
[79273] "light"     "cigar"     "light"     "unknown"   "circle"    "sphere"   
[79279] "cylinder"  "flash"     "triangle"  "other"     "unknown"   "triangle" 
[79285] "oval"      "light"     "light"     "light"     "formation" "flash"    
[79291] "circle"    "chevron"   "disk"      "triangle"  "unknown"   "egg"      
[79297] "cylinder"  "light"     "cylinder"  "disk"      "chevron"   "triangle" 
[79303] "formation" "other"     "teardrop"  "light"     "circle"    "circle"   
[79309] "circle"    "other"     "other"     "cylinder"  "rectangle" "cigar"    
[79315] "circle"    "cigar"     "fireball"  "light"     "flash"     "light"    
[79321] "unknown"   "unknown"   "flash"     "light"     "disk"      "other"    
[79327] "fireball"  "circle"    "unknown"   "circle"    "fireball"  "cigar"    
[79333] "cigar"     "rectangle" "light"     "disk"      "triangle"  "triangle" 
[79339] "unknown"   "unknown"   "light"     "other"     "fireball"  "fireball" 
[79345] "sphere"    "circle"    NA          "light"     NA          "other"    
[79351] "light"     "fireball"  "chevron"   "other"     "triangle"  "triangle" 
[79357] "triangle"  "other"     "circle"    "disk"      "circle"    "diamond"  
[79363] "light"     "teardrop"  "circle"    "triangle"  "unknown"   "triangle" 
[79369] "unknown"   "rectangle" "cylinder"  "other"     "disk"      "triangle" 
[79375] "circle"    "light"     "cigar"     "light"     "light"     "formation"
[79381] "fireball"  "circle"    "sphere"    "flash"     "disk"      "triangle" 
[79387] "disk"      "other"     "fireball"  "light"     "teardrop"  "disk"     
[79393] "light"     "other"     "light"     "other"     "light"     "circle"   
[79399] "sphere"    "sphere"    "light"     "fireball"  "rectangle" "oval"     
[79405] "circle"    "unknown"   "triangle"  "fireball"  "triangle"  "fireball" 
[79411] "triangle"  "triangle"  "light"     "fireball"  "formation" "triangle" 
[79417] "fireball"  "other"     "formation" "flash"     "other"     "light"    
[79423] "triangle"  "unknown"   "light"     "circle"    "cigar"     "sphere"   
[79429] "fireball"  "sphere"    "teardrop"  "circle"    "fireball"  "fireball" 
[79435] "light"     "fireball"  "light"     "oval"      "circle"    "circle"   
[79441] "light"     "fireball"  "circle"    "unknown"   "light"     "light"    
[79447] "unknown"   "light"     "sphere"    "circle"    "cigar"     "oval"     
[79453] "light"     "oval"      "cigar"     "fireball"  "light"     "other"    
[79459] "unknown"   "circle"    "circle"    "oval"      "sphere"    "sphere"   
[79465] "fireball"  "light"     "flash"     "light"     "light"     "circle"   
[79471] "formation" "egg"       "disk"      "triangle"  "light"     "triangle" 
[79477] "other"     "sphere"    "unknown"   NA          NA          NA         
[79483] NA          "formation" NA          NA          NA          "light"    
[79489] "triangle"  "cone"      "triangle"  "disk"      "light"     "diamond"  
[79495] "other"     "circle"    NA          "formation" "other"     "light"    
[79501] "light"     "light"     "light"     "fireball"  "light"     "fireball" 
[79507] "light"     "unknown"   "circle"    "chevron"   "sphere"    "chevron"  
[79513] "unknown"   "light"     "teardrop"  "disk"      "circle"    "triangle" 
[79519] "circle"    "light"     "light"     "light"     "light"     "changing" 
[79525] "light"     "light"     "light"     "light"     "disk"      "light"    
[79531] "sphere"    "cigar"     "cross"     "sphere"    "other"     "light"    
[79537] "cylinder"  "other"     "cylinder"  "other"     "light"     "light"    
[79543] "rectangle" "light"     "other"     "unknown"   "unknown"   "changing" 
[79549] "cigar"     "light"     "unknown"   "changing"  "light"     "unknown"  
[79555] "light"     "light"     "cigar"     "unknown"   "light"     "cigar"    
[79561] "light"     "cigar"     "sphere"    "circle"    "sphere"    "circle"   
[79567] "triangle"  "unknown"   "unknown"   "light"     "oval"      "cylinder" 
[79573] "light"     "circle"    "circle"    "formation" "egg"       "rectangle"
[79579] "disk"      "light"     "other"     "formation" "light"     "disk"     
[79585] "light"     "circle"    "unknown"   "light"     "cigar"     "other"    
[79591] "flash"     NA          "unknown"   "disk"      "light"     "light"    
[79597] "light"     "light"     "light"     "unknown"   "light"     "light"    
[79603] "disk"      "circle"    "other"     "sphere"    "sphere"    "light"    
[79609] "light"     "circle"    "light"     "triangle"  "other"     "flash"    
[79615] "circle"    "fireball"  "light"     "disk"      "formation" "circle"   
[79621] "triangle"  "cigar"     "light"     "cigar"     "triangle"  "fireball" 
[79627] "rectangle" "light"     "light"     "fireball"  "circle"    "triangle" 
[79633] "circle"    "light"     "triangle"  "oval"      "light"     "disk"     
[79639] "triangle"  "cone"      "fireball"  "fireball"  "fireball"  "fireball" 
[79645] "fireball"  "light"     "circle"    "fireball"  "light"     "light"    
[79651] "unknown"   "fireball"  "light"     "fireball"  "circle"    "fireball" 
[79657] "light"     NA          "light"     "light"     "changing"  "light"    
[79663] "triangle"  "flash"     "light"     "other"     "rectangle" "oval"     
[79669] "light"     "light"     "changing"  "light"     "light"     "triangle" 
[79675] "oval"      "circle"    "sphere"    "circle"    "light"     "fireball" 
[79681] "circle"    "circle"    "sphere"    "light"     "light"     "other"    
[79687] "fireball"  "sphere"    NA          "light"     "oval"      "formation"
[79693] "light"     "fireball"  "fireball"  "sphere"    "sphere"    "light"    
[79699] "circle"    "sphere"    "circle"    "cylinder"  "light"     "triangle" 
[79705] "fireball"  "egg"       NA          "light"     "light"     "flash"    
[79711] "oval"      "oval"      "light"     "light"     "fireball"  "fireball" 
[79717] "circle"    "rectangle" "circle"    "fireball"  "other"     "unknown"  
[79723] "light"     "triangle"  "triangle"  "light"     "light"     "light"    
[79729] "sphere"    "circle"    "circle"    "light"     "sphere"    "disk"     
[79735] "oval"      "disk"      "rectangle" "egg"       "chevron"   "light"    
[79741] "egg"       "circle"    "circle"    "oval"      "other"     "other"    
[79747] "formation" NA          NA          "disk"      NA          "oval"     
[79753] "unknown"   "other"     "triangle"  "triangle"  "chevron"   "other"    
[79759] "circle"    "fireball"  "unknown"   "disk"      "diamond"   "triangle" 
[79765] "light"     "disk"      "light"     NA          "disk"      "disk"     
[79771] "oval"      "circle"    "disk"      "disk"      "other"     "sphere"   
[79777] "triangle"  "triangle"  "triangle"  "disk"      "disk"      "unknown"  
[79783] "unknown"   "other"     "changing"  "light"     "light"     "light"    
[79789] "light"     "other"     NA          "triangle"  "disk"      "light"    
[79795] "other"     "diamond"   "unknown"   "circle"    "light"     "unknown"  
[79801] "light"     "unknown"   "light"     "fireball"  "unknown"   "sphere"   
[79807] "light"     "light"     "flash"     "flash"     "circle"    "oval"     
[79813] "oval"      "triangle"  "sphere"    "light"     "circle"    "disk"     
[79819] "oval"      "light"     "circle"    "flash"     "light"     "light"    
[79825] "other"     "light"     "triangle"  "cigar"     "other"     "unknown"  
[79831] "circle"    "light"     "triangle"  "triangle"  "other"     NA         
[79837] "light"     "light"     "light"     "changing"  "unknown"   "fireball" 
[79843] "other"     "oval"      "formation" "oval"      "oval"      "fireball" 
[79849] "light"     "light"     "disk"      "cigar"     "fireball"  "triangle" 
[79855] "cigar"     "disk"      "disk"      "triangle"  "oval"      "teardrop" 
[79861] "circle"    "circle"    "light"     "cigar"     "light"     "light"    
[79867] "fireball"  "cylinder"  "circle"    "unknown"   "light"     "fireball" 
[79873] "triangle"  "fireball"  "unknown"   "fireball"  "cigar"     "rectangle"
[79879] "fireball"  "other"     "light"     "light"     "unknown"   "unknown"  
[79885] "sphere"    "light"     "circle"    "light"     "disk"      "fireball" 
[79891] "light"     "triangle"  "light"     "unknown"   "fireball"  "triangle" 
[79897] "light"     "triangle"  NA          "sphere"    "flash"     "circle"   
[79903] "light"     NA          "unknown"   "other"     "light"     "circle"   
[79909] "formation" "circle"    "light"     "formation" "oval"      "changing" 
[79915] "other"     "light"     "light"     "triangle"  "changing"  "light"    
[79921] "fireball"  "rectangle" "light"     "unknown"   "circle"    "light"    
[79927] "sphere"    "light"     "unknown"   "light"     "teardrop"  "light"    
[79933] "other"     "circle"    "light"     "fireball"  "disk"      "light"    
[79939] "light"     "triangle"  "triangle"  "circle"    "light"     NA         
[79945] "circle"    "cigar"     "light"     "fireball"  "circle"    "chevron"  
[79951] "chevron"   "sphere"    "other"     "triangle"  "light"     "triangle" 
[79957] "light"     "disk"      "sphere"    "circle"    "other"     "light"    
[79963] "sphere"    "triangle"  "triangle"  "changing"  "fireball"  "fireball" 
[79969] "fireball"  "sphere"    "cross"     "light"     "light"     "light"    
[79975] "light"     "other"     "unknown"   "fireball"  "fireball"  "light"    
[79981] "unknown"   "sphere"    "fireball"  "triangle"  "oval"      "unknown"  
[79987] "disk"      "fireball"  "cigar"     "oval"      "light"     "sphere"   
[79993] "formation" "circle"    "circle"    NA          "light"     "triangle" 
[79999] "formation" "light"     NA          "teardrop"  "light"     "oval"     
[80005] "fireball"  "circle"    "diamond"   "triangle"  "light"     "circle"   
[80011] "sphere"    "disk"      "disk"      "fireball"  "disk"      "other"    
[80017] "disk"      "changing"  "oval"      "circle"    "light"     "unknown"  
[80023] "disk"      "light"     "disk"      "sphere"    "disk"      "light"    
[80029] "rectangle" "triangle"  "formation" "rectangle" "triangle"  "triangle" 
[80035] "unknown"   "other"     "triangle"  "light"     "oval"      "unknown"  
[80041] "sphere"    "other"     "fireball"  "oval"      "other"     "triangle" 
[80047] "sphere"    "cylinder"  "triangle"  "light"     "sphere"    "oval"     
[80053] "other"     "sphere"    "other"     "formation" NA          NA         
[80059] NA          NA          "unknown"   NA          "light"     "sphere"   
[80065] "sphere"    "light"     "triangle"  "sphere"    "circle"    "other"    
[80071] "other"     "cigar"     "unknown"   "disk"      "other"     "chevron"  
[80077] "circle"    "unknown"   "disk"      "other"     "oval"      "circle"   
[80083] "triangle"  "unknown"   "unknown"   "sphere"    "sphere"    "changing" 
[80089] "disk"      "light"     "disk"      "sphere"    NA          "fireball" 
[80095] "light"     "changing"  "fireball"  "diamond"   "unknown"   "light"    
[80101] "light"     "chevron"   "circle"    "light"     "sphere"    "circle"   
[80107] "other"     "cylinder"  "sphere"    "flash"     "disk"      "light"    
[80113] "formation" "circle"    "triangle"  "sphere"    "oval"      "unknown"  
[80119] "unknown"   "flash"     "unknown"   "changing"  "changing"  "light"    
[80125] "diamond"   "circle"    "oval"      "flash"     "disk"      "circle"   
[80131] "chevron"   "sphere"    "other"     "other"     "flash"     "circle"   
[80137] NA          "circle"    "sphere"    "cigar"     "disk"      "cigar"    
[80143] "flash"     "triangle"  "disk"      "chevron"   "light"     "light"    
[80149] "rectangle" "changing"  "cigar"     "circle"    "light"     "changing" 
[80155] NA          NA          "formation" "diamond"   "light"     "oval"     
[80161] "oval"      "disk"      "disk"      "sphere"    "light"     "unknown"  
[80167] "light"     "triangle"  "cone"      "cylinder"  "other"     "fireball" 
[80173] "cigar"     "light"     "circle"    "rectangle" "diamond"   "circle"   
[80179] "disk"      "flash"     NA          "triangle"  "disk"      "light"    
[80185] "egg"       "disk"      "unknown"   "other"     "sphere"    "fireball" 
[80191] "circle"    "sphere"    "light"     "light"     "light"     "other"    
[80197] "other"     "circle"    "fireball"  "circle"    "rectangle" "triangle" 
[80203] "light"     "triangle"  "other"     "cylinder"  "light"     "light"    
[80209] "fireball"  "sphere"    "fireball"  "rectangle" "light"     "light"    
[80215] "unknown"   "light"     "disk"      "circle"    "sphere"    "circle"   
[80221] "sphere"    "changing"  "fireball"  "oval"      "unknown"   "light"    
[80227] "rectangle" "circle"    "cross"     "sphere"    "circle"    "unknown"  
[80233] "light"     "cigar"     "unknown"   "light"     "circle"    "light"    
[80239] "egg"       "other"     "light"     "light"     "light"     "chevron"  
[80245] "oval"      "light"     "sphere"    "other"     "teardrop"  "sphere"   
[80251] NA          "fireball"  "sphere"    "triangle"  "triangle"  "light"    
[80257] "light"     "light"     "sphere"    "sphere"    "disk"      "unknown"  
[80263] "light"     "circle"    "fireball"  "triangle"  "disk"      "formation"
[80269] "sphere"    "cylinder"  "light"     "fireball"  NA          "formation"
[80275] "light"     "sphere"    "triangle"  "fireball"  "fireball"  "light"    
[80281] "light"     "light"     "sphere"    "fireball"  "light"     "oval"     
[80287] "light"     "sphere"    "triangle"  "light"     "fireball"  "other"    
[80293] "light"     "circle"    "disk"      "cylinder"  "other"     "light"    
[80299] "light"     "triangle"  "sphere"    "circle"    "light"     "oval"     
[80305] "sphere"    "unknown"   "circle"    "light"     "other"     "light"    
[80311] "circle"    "light"     "other"     "sphere"    "circle"    "circle"   
[80317] "flash"     "unknown"   "light"     NA          "unknown"   "light"    
[80323] "cylinder"  "circle"    "light"     NA          NA          "circle"   
[80329] "disk"      "disk"      "unknown"   "cigar"     "disk"      "cigar"    
[80335] "other"     "triangle"  "cone"      "triangle"  "triangle"  "triangle" 
[80341] "triangle"  "triangle"  "sphere"    NA          "circle"    "triangle" 
[80347] "other"     "changing"  "other"     "circle"    "oval"      "sphere"   
[80353] "other"     "unknown"   "other"     "fireball"  "cross"     "flash"    
[80359] "fireball"  "circle"    "other"     "light"     "sphere"    "fireball" 
[80365] "fireball"  "unknown"   "formation" "oval"      "disk"      "oval"     
[80371] "light"     "cigar"     "flash"     "light"     "fireball"  "formation"
[80377] "sphere"    "flash"     "diamond"   "oval"      NA          "light"    
[80383] "diamond"   "unknown"   "circle"    "light"     "triangle"  "light"    
[80389] "cigar"     "light"     "light"     "triangle"  "light"     "chevron"  
[80395] "disk"      "disk"      "sphere"    "light"     "light"     "unknown"  
[80401] "light"     "chevron"   "disk"      "cigar"     "triangle"  "light"    
[80407] "disk"      "light"     "cigar"     "sphere"    "chevron"   "unknown"  
[80413] "unknown"   "unknown"   "light"     "triangle"  "light"     "flash"    
[80419] "unknown"   NA          "disk"      "fireball"  "triangle"  "circle"   
[80425] "triangle"  "light"     "light"     "triangle"  "oval"      "sphere"   
[80431] "light"     "light"     "circle"    "light"     "fireball"  "disk"     
[80437] "circle"    "sphere"    "diamond"   "cylinder"  "sphere"    "triangle" 
[80443] "sphere"    "circle"    "diamond"   "light"     "triangle"  "triangle" 
[80449] "circle"    "unknown"   "sphere"    "light"     "triangle"  "disk"     
[80455] "unknown"   "unknown"   "unknown"   "disk"      "sphere"    "light"    
[80461] "circle"    "light"     "circle"    "unknown"   "fireball"  "unknown"  
[80467] "light"     "light"     "flash"     "light"     "triangle"  "light"    
[80473] "fireball"  "light"     "sphere"    "chevron"   "other"     "teardrop" 
[80479] "triangle"  "disk"      "circle"    "cylinder"  "flash"     "other"    
[80485] "other"     "circle"    "circle"    "formation" "light"     "formation"
[80491] "disk"      "fireball"  "circle"    "unknown"   "triangle"  "cross"    
[80497] "cigar"     "rectangle" "unknown"   "unknown"   "triangle"  NA         
[80503] "light"     "light"     "unknown"   "cigar"     "light"     "fireball" 
[80509] "fireball"  "fireball"  "light"     "fireball"  "fireball"  "other"    
[80515] "light"     "light"     "oval"      "unknown"   "light"     "light"    
[80521] NA          "egg"       "circle"    "flash"     "circle"    "circle"   
[80527] "fireball"  "fireball"  "fireball"  "fireball"  "fireball"  "light"    
[80533] "oval"      "disk"      "fireball"  "sphere"    "fireball"  "circle"   
[80539] "triangle"  "circle"    "light"     "disk"      "disk"      "oval"     
[80545] "disk"      "cigar"     "circle"    "other"     "cigar"     "disk"     
[80551] "sphere"    "unknown"   "disk"      "disk"      "light"     "other"    
[80557] "circle"    "disk"      "other"     "disk"      "disk"      "circle"   
[80563] "cigar"     "rectangle" "light"     "circle"    "cylinder"  "rectangle"
[80569] "disk"      "light"     "rectangle" "triangle"  "disk"      "triangle" 
[80575] NA          "cigar"     "light"     "light"     NA          "triangle" 
[80581] "unknown"   "circle"    "circle"    "fireball"  "flash"     "fireball" 
[80587] "fireball"  "cigar"     "changing"  "disk"      "light"     "fireball" 
[80593] NA          "triangle"  "formation" "cylinder"  "other"     "teardrop" 
[80599] "light"     "other"     "triangle"  "triangle"  "light"     "sphere"   
[80605] "light"     "light"     NA          "circle"    "light"     "cigar"    
[80611] "other"     "light"     "triangle"  "triangle"  "light"     "egg"      
[80617] "fireball"  NA          "disk"      "triangle"  "unknown"   "light"    
[80623] "light"     "triangle"  "triangle"  "triangle"  "diamond"   "light"    
[80629] "light"     "formation" "light"     "light"     "unknown"   "egg"      
[80635] "circle"    "light"     "oval"      "sphere"    "egg"       "rectangle"
[80641] "light"     "light"     "light"     "other"     "light"     "flash"    
[80647] "light"     "circle"    "triangle"  "formation" "circle"    NA         
[80653] "teardrop"  "diamond"   "sphere"    "disk"      "circle"    "circle"   
[80659] "light"     "other"     "formation" "circle"    "light"     "light"    
[80665] "other"     "circle"    "triangle"  "unknown"   "unknown"   "light"    
[80671] "flash"     "unknown"   "other"     "triangle"  "oval"      "oval"     
[80677] "disk"      "oval"      "light"     "light"     "disk"      "triangle" 
[80683] "sphere"    "unknown"   "light"     "light"     "light"     "circle"   
[80689] "triangle"  "triangle"  "circle"    "disk"      "unknown"   "circle"   
[80695] "sphere"    "light"     "unknown"   "disk"      "light"     "circle"   
[80701] "unknown"   "triangle"  "light"     "light"     "rectangle" "light"    
[80707] "circle"    NA          "oval"      "unknown"   "unknown"   "triangle" 
[80713] "oval"      "oval"      "sphere"    "other"     "triangle"  "fireball" 
[80719] "unknown"   "cylinder"  "cigar"     "triangle"  "chevron"   "oval"     
[80725] "triangle"  "triangle"  "formation" "cigar"     "cylinder"  "circle"   
[80731] "oval"      "light"     "unknown"   "light"     "triangle"  "changing" 
[80737] "sphere"    "triangle"  "flash"     "light"     "other"     "fireball" 
[80743] "disk"      "triangle"  NA          "light"     "circle"    "sphere"   
[80749] "cigar"     "sphere"    "cross"     "other"     "light"     "rectangle"
[80755] "light"     "unknown"   "sphere"    "unknown"   "oval"      "cone"     
[80761] "circle"    "circle"    "triangle"  "triangle"  "light"     "unknown"  
[80767] "sphere"    "disk"      "light"     "circle"    "sphere"    "light"    
[80773] "sphere"    "unknown"   "circle"    "fireball"  "circle"    "cylinder" 
[80779] "other"     "light"     "disk"      "sphere"    "circle"    "formation"
[80785] "egg"       "light"     "other"     "circle"    "fireball"  "circle"   
[80791] "circle"    "cigar"     "unknown"   "circle"    "circle"    "light"    
[80797] "changing"  "circle"    "unknown"   "light"     "unknown"   "circle"   
[80803] "teardrop"  "fireball"  "other"     "light"     "other"     "sphere"   
[80809] "oval"      "unknown"   "sphere"    "cigar"     "light"     "disk"     
[80815] "triangle"  "light"     NA          "sphere"    "cone"      "flash"    
[80821] "rectangle" "sphere"    "fireball"  "oval"      "fireball"  "fireball" 
[80827] "triangle"  "cone"      "unknown"   "light"     "unknown"   "light"    
[80833] "unknown"   "triangle"  "sphere"    "light"     "triangle"  "changing" 
[80839] "fireball"  "light"     "circle"    "light"     "triangle"  "cross"    
[80845] "circle"    "unknown"   "flash"     "rectangle" "unknown"   "unknown"  
[80851] "fireball"  "formation" "circle"    "other"     "cigar"     "light"    
[80857] NA          "sphere"    "triangle"  NA          "cigar"     "cigar"    
[80863] NA          "triangle"  NA          NA          "light"     "diamond"  
[80869] "triangle"  "light"     "diamond"   "light"     "disk"      "changing" 
[80875] "triangle"  "fireball"  "chevron"   "light"     "changing"  "other"    
[80881] "oval"      "oval"      "circle"    "teardrop"  "light"     "triangle" 
[80887] "changing"  "light"     "light"     "flash"     "fireball"  "disk"     
[80893] "disk"      "light"     "light"     "fireball"  "light"     "light"    
[80899] "light"     "formation" "formation" "triangle"  "other"     "other"    
[80905] "cigar"     "sphere"    "unknown"   "diamond"   "triangle"  "light"    
[80911] "sphere"    "cigar"     "other"     "oval"      "disk"      "cigar"    
[80917] "egg"       "formation" "light"     "circle"    "triangle"  "other"    
[80923] "unknown"   "sphere"    "sphere"    "cigar"     "sphere"    "chevron"  
[80929] "light"     "formation" "light"     "circle"    "light"     "circle"   
[80935] "changing"  "light"     "cone"      "circle"    "circle"    "light"    
[80941] "light"     "triangle"  "formation" "teardrop"  "light"     "light"    
[80947] "light"     NA          "unknown"   "sphere"    "egg"       "oval"     
[80953] "light"     "formation" "diamond"   "fireball"  "triangle"  "formation"
[80959] "triangle"  "light"     "triangle"  "cigar"     "sphere"    "oval"     
[80965] "flash"     "oval"      "circle"    "circle"    "light"     "light"    
[80971] "light"     "triangle"  "circle"    "circle"    "fireball"  "other"    
[80977] "oval"      "flash"     "triangle"  "circle"    "disk"      "light"    
[80983] "fireball"  "oval"      "oval"      "flash"     "light"     "unknown"  
[80989] "light"     "triangle"  "flash"     "other"     "triangle"  "diamond"  
[80995] "diamond"   "light"     "circle"    "sphere"    "triangle"  "diamond"  
[81001] "light"     "flash"     "unknown"   "light"     "light"     "light"    
[81007] "triangle"  "light"     "fireball"  "diamond"   NA          "fireball" 
[81013] "triangle"  "triangle"  "fireball"  "cigar"     "rectangle" "fireball" 
[81019] "fireball"  "formation" "changing"  "other"     NA          "disk"     
[81025] "light"     "sphere"    "sphere"    "circle"    "light"     "chevron"  
[81031] "triangle"  "light"     "light"     "teardrop"  NA          "light"    
[81037] "light"     "formation" "light"     "light"     "unknown"   "light"    
[81043] "light"     "light"     "unknown"   "sphere"    "circle"    "disk"     
[81049] "unknown"   "teardrop"  "light"     "sphere"    "circle"    "circle"   
[81055] "changing"  "sphere"    "oval"      "unknown"   "fireball"  "changing" 
[81061] "light"     "triangle"  "light"     "disk"      "light"     "light"    
[81067] "other"     "triangle"  "oval"      "rectangle" "fireball"  "light"    
[81073] "unknown"   "circle"    "disk"      "triangle"  "fireball"  "light"    
[81079] "light"     "triangle"  "teardrop"  "light"     "changing"  "circle"   
[81085] "circle"    "other"     "diamond"   "light"     "sphere"    "formation"
[81091] "formation" "light"     "circle"    "light"     "circle"    "light"    
[81097] "sphere"    "flash"     "sphere"    "unknown"   "sphere"    "oval"     
[81103] "flash"     "cylinder"  "other"     "light"     "triangle"  "unknown"  
[81109] "light"     "egg"       "oval"      "circle"    "triangle"  "triangle" 
[81115] "fireball"  "flash"     "circle"    "fireball"  "formation" "fireball" 
[81121] "light"     "sphere"    "teardrop"  "sphere"    "circle"    "circle"   
[81127] "unknown"   "circle"    "cigar"     "unknown"   "oval"      "unknown"  
[81133] "triangle"  "circle"    "changing"  "cylinder"  "fireball"  "triangle" 
[81139] "light"     "rectangle" "circle"    "triangle"  "light"     "fireball" 
[81145] "other"     "triangle"  "disk"      "sphere"    "circle"    "disk"     
[81151] "disk"      "light"     "disk"      "circle"    "light"     "oval"     
[81157] "fireball"  "circle"    "sphere"    "sphere"    "light"     "cigar"    
[81163] "disk"      "oval"      "oval"      "disk"      "cigar"     "cigar"    
[81169] "sphere"    "triangle"  "rectangle" "circle"    "disk"      "light"    
[81175] "disk"      "circle"    "triangle"  NA          "light"     "rectangle"
[81181] "disk"      "disk"      "other"     "disk"      "oval"      "oval"     
[81187] "sphere"    "light"     "unknown"   "disk"      "light"     "light"    
[81193] "fireball"  "triangle"  "disk"      "triangle"  "sphere"    "chevron"  
[81199] "disk"      "cone"      "light"     "triangle"  "triangle"  NA         
[81205] "circle"    "other"     "triangle"  "light"     "light"     "disk"     
[81211] "disk"      "unknown"   "disk"      "other"     "disk"      "triangle" 
[81217] "circle"    "other"     "sphere"    "formation" "triangle"  "circle"   
[81223] "sphere"    "disk"      "sphere"    "light"     "disk"      "triangle" 
[81229] "light"     "light"     "diamond"   "disk"      "light"     "triangle" 
[81235] "triangle"  "triangle"  "oval"      "light"     "sphere"    "unknown"  
[81241] "disk"      "rectangle" "oval"      "formation" "triangle"  "other"    
[81247] "sphere"    "light"     "unknown"   "other"     "disk"      "disk"     
[81253] "disk"      "light"     "unknown"   "sphere"    NA          "sphere"   
[81259] "disk"      "triangle"  "circle"    "circle"    "triangle"  "triangle" 
[81265] "other"     "triangle"  "unknown"   "sphere"    "rectangle" "rectangle"
[81271] "other"     "rectangle" "rectangle" "circle"    "oval"      "light"    
[81277] "rectangle" "triangle"  "triangle"  "circle"    "triangle"  "light"    
[81283] "sphere"    "light"     "changing"  "oval"      "triangle"  "sphere"   
[81289] "unknown"   "triangle"  "changing"  "light"     "diamond"   "light"    
[81295] "light"     "disk"      "disk"      "light"     "unknown"   "other"    
[81301] "disk"      "disk"      "fireball"  "oval"      "disk"      "fireball" 
[81307] "light"     "light"     "oval"      "triangle"  "disk"      "circle"   
[81313] "cigar"     "triangle"  "triangle"  "formation" "sphere"    "triangle" 
[81319] "triangle"  "circle"    "unknown"   "triangle"  "formation" "light"    
[81325] "changing"  "formation" "light"     "cigar"     "cigar"     "oval"     
[81331] "light"     "rectangle" "unknown"   NA          "fireball"  "formation"
[81337] "triangle"  "triangle"  "changing"  "light"     "cigar"     NA         
[81343] "fireball"  "other"     "triangle"  "other"     "fireball"  NA         
[81349] "formation" "fireball"  "fireball"  NA          "fireball"  "fireball" 
[81355] "fireball"  "light"     "light"     "fireball"  "teardrop"  "other"    
[81361] "light"     "unknown"   "fireball"  "unknown"   "triangle"  "light"    
[81367] NA          "light"     "teardrop"  "fireball"  NA          "changing" 
[81373] "cigar"     "light"     "diamond"   "light"     "cigar"     "triangle" 
[81379] "light"     "formation" "other"     NA          "rectangle" "other"    
[81385] "light"     "fireball"  NA          "changing"  "egg"       "light"    
[81391] "other"     "diamond"   "disk"      "other"     "circle"    "light"    
[81397] "triangle"  "cylinder"  "triangle"  "fireball"  "triangle"  "flash"    
[81403] "other"     "other"     "oval"      "formation" "egg"       "triangle" 
[81409] "disk"      "other"     "other"     "sphere"    "oval"      "fireball" 
[81415] "cigar"     "light"     "disk"      "changing"  "fireball"  "triangle" 
[81421] "disk"      "triangle"  "light"     "unknown"   "changing"  "rectangle"
[81427] "disk"      "sphere"    "disk"      "other"     "triangle"  "unknown"  
[81433] "diamond"   "light"     "triangle"  "oval"      "triangle"  "triangle" 
[81439] "unknown"   "light"     NA          "circle"    "oval"      "teardrop" 
[81445] "sphere"    "sphere"    "circle"    "unknown"   "light"     "disk"     
[81451] "other"     "light"     "light"     "circle"    "other"     "light"    
[81457] "light"     "light"     NA          "sphere"    "triangle"  "circle"   
[81463] "sphere"    "oval"      "triangle"  "light"     "egg"       "light"    
[81469] "light"     "unknown"   "light"     "circle"    "light"     "triangle" 
[81475] "unknown"   "oval"      "rectangle" "light"     "cylinder"  "disk"     
[81481] "light"     "cylinder"  "light"     "light"     "triangle"  "light"    
[81487] "triangle"  "sphere"    "chevron"   "light"     "egg"       "fireball" 
[81493] "triangle"  "unknown"   "sphere"    "light"     "rectangle" "light"    
[81499] "disk"      "triangle"  "unknown"   "formation" "changing"  "sphere"   
[81505] "light"     "light"     "teardrop"  "other"     "circle"    "fireball" 
[81511] NA          "sphere"    "fireball"  "sphere"    "oval"      "oval"     
[81517] "light"     "unknown"   "unknown"   "egg"       "circle"    "triangle" 
[81523] "circle"    "sphere"    "sphere"    "cigar"     "other"     "disk"     
[81529] "other"     "sphere"    "oval"      "fireball"  "other"     "triangle" 
[81535] "fireball"  "fireball"  "formation" "light"     "rectangle" "triangle" 
[81541] "other"     "sphere"    "changing"  "other"     NA          "light"    
[81547] "triangle"  "light"     "unknown"   "chevron"   "triangle"  "light"    
[81553] "unknown"   "unknown"   "light"     "light"     "rectangle" "rectangle"
[81559] "light"     "sphere"    "oval"      "teardrop"  "sphere"    "fireball" 
[81565] "light"     "light"     "sphere"    "rectangle" "sphere"    "other"    
[81571] "light"     "sphere"    "circle"    "light"     "fireball"  "light"    
[81577] "light"     "other"     "circle"    "light"     "chevron"   "triangle" 
[81583] "light"     "light"     "circle"    "circle"    "other"     "other"    
[81589] "sphere"    "cone"      "light"     "fireball"  "rectangle" "light"    
[81595] "light"     "cylinder"  "fireball"  "unknown"   "light"     "changing" 
[81601] "formation" "light"     "sphere"    "disk"      "other"     "unknown"  
[81607] "light"     "circle"    "light"     "triangle"  "triangle"  "oval"     
[81613] "circle"    "circle"    "fireball"  "light"     "fireball"  "triangle" 
[81619] "light"     "changing"  "formation" "unknown"   "other"     "sphere"   
[81625] "light"     "light"     "light"     "fireball"  "light"     "fireball" 
[81631] "triangle"  "fireball"  "light"     "light"     "fireball"  "light"    
[81637] "light"     "sphere"    "sphere"    "light"     "disk"      "fireball" 
[81643] "triangle"  "light"     "triangle"  "circle"    "triangle"  "teardrop" 
[81649] "circle"    "unknown"   "light"     "light"     "light"     "circle"   
[81655] "fireball"  "sphere"    "circle"    "disk"      "flash"     "oval"     
[81661] "disk"      "fireball"  NA          "light"     "light"     "sphere"   
[81667] "egg"       "other"     "other"     "light"     "unknown"   "disk"     
[81673] NA          "formation" "fireball"  "triangle"  "fireball"  "fireball" 
[81679] "disk"      "fireball"  "fireball"  "fireball"  "circle"    NA         
[81685] "light"     "unknown"   "triangle"  "circle"    "oval"      "oval"     
[81691] "light"     "fireball"  "cigar"     "unknown"   "sphere"    "light"    
[81697] "triangle"  "cigar"     "formation" "circle"    "triangle"  "triangle" 
[81703] "sphere"    "light"     "sphere"    "flash"     "fireball"  "egg"      
[81709] "circle"    "cylinder"  "other"     "oval"      "disk"      "fireball" 
[81715] "cylinder"  "other"     "triangle"  "changing"  "teardrop"  NA         
[81721] NA          NA          NA          NA          "disk"      "other"    
[81727] "oval"      "light"     "sphere"    "disk"      "oval"      "diamond"  
[81733] "fireball"  "fireball"  "triangle"  "light"     "circle"    "disk"     
[81739] "oval"      "unknown"   "light"     "cigar"     "light"     "light"    
[81745] "circle"    "unknown"   "triangle"  "sphere"    "changing"  "other"    
[81751] "light"     "light"     "cigar"     "circle"    "teardrop"  "light"    
[81757] "rectangle" "other"     "light"     "disk"      "fireball"  "unknown"  
[81763] "changing"  "light"     "triangle"  "light"     "unknown"   "other"    
[81769] "light"     "other"     "unknown"   "egg"       "light"     NA         
[81775] NA          "disk"      "other"     "cigar"     "triangle"  "oval"     
[81781] "sphere"    "formation" "light"     "sphere"    "triangle"  "light"    
[81787] "triangle"  "unknown"   "disk"      "rectangle" "circle"    "sphere"   
[81793] "light"     "light"     "triangle"  "circle"    "light"     "triangle" 
[81799] "unknown"   "other"     "other"     "circle"    "light"     "rectangle"
[81805] "fireball"  "triangle"  "oval"      "flash"     "oval"      "triangle" 
[81811] "light"     "triangle"  "cigar"     "sphere"    "unknown"   "light"    
[81817] "light"     "triangle"  "unknown"   "unknown"   "disk"      "triangle" 
[81823] "light"     "unknown"   "light"     "fireball"  "triangle"  "unknown"  
[81829] "diamond"   "light"     "light"     "light"     "other"     "formation"
[81835] "unknown"   NA          "circle"    "disk"      "sphere"    "triangle" 
[81841] "triangle"  "light"     NA          "light"     "egg"       "circle"   
[81847] "triangle"  "oval"      "unknown"   "light"     "teardrop"  "oval"     
[81853] "sphere"    "flash"     NA          "disk"      "light"     "light"    
[81859] "unknown"   "light"     "light"     "teardrop"  "sphere"    "disk"     
[81865] "triangle"  "fireball"  "disk"      "fireball"  "triangle"  "changing" 
[81871] "light"     "oval"      "fireball"  "formation" "fireball"  "circle"   
[81877] "triangle"  "triangle"  "teardrop"  "chevron"   "diamond"   "cylinder" 
[81883] NA          "light"     "other"     "triangle"  "fireball"  "unknown"  
[81889] "fireball"  "circle"    "triangle"  "circle"    "light"     "circle"   
[81895] NA          "fireball"  "fireball"  "fireball"  "triangle"  "oval"     
[81901] "teardrop"  "fireball"  "sphere"    "fireball"  "unknown"   "triangle" 
[81907] "other"     "circle"    "triangle"  "light"     "cigar"     "triangle" 
[81913] "light"     "diamond"   "light"     "circle"    "other"     "circle"   
[81919] "sphere"    "circle"    "triangle"  "triangle"  "light"     "unknown"  
[81925] "triangle"  "light"     "diamond"   "triangle"  "triangle"  "changing" 
[81931] "light"     "circle"    "unknown"   "changing"  "circle"    "light"    
[81937] "other"     "oval"      "disk"      "light"     "fireball"  "sphere"   
[81943] "fireball"  "other"     "formation" "other"     "oval"      "other"    
[81949] "disk"      "circle"    "light"     "disk"      "light"     "unknown"  
[81955] "fireball"  "fireball"  "light"     "circle"    "fireball"  "cross"    
[81961] "light"     "light"     "oval"      "oval"      "triangle"  "light"    
[81967] "fireball"  "triangle"  "triangle"  "circle"    "light"     "changing" 
[81973] "light"     "circle"    "triangle"  "triangle"  "disk"      "light"    
[81979] "disk"      "triangle"  NA          NA          NA          NA         
[81985] NA          NA          NA          "flash"     "triangle"  "formation"
[81991] "other"     "fireball"  "fireball"  "circle"    "formation" "other"    
[81997] "other"     "light"     "fireball"  "other"     "light"     "unknown"  
[82003] "oval"      "light"     "other"     "oval"      "circle"    "light"    
[82009] "flash"     "other"     "rectangle" "sphere"    "formation" "light"    
[82015] "flash"     "cigar"     "triangle"  "light"     "oval"      "light"    
[82021] "light"     "other"     "triangle"  "disk"      "cigar"     "unknown"  
[82027] "circle"    "sphere"    "unknown"   "rectangle" "other"     "unknown"  
[82033] "light"     "light"     "unknown"   "unknown"   "fireball"  "fireball" 
[82039] "circle"    "unknown"   "unknown"   "unknown"   "other"     "unknown"  
[82045] "changing"  "unknown"   "formation" "light"     "oval"      "triangle" 
[82051] "circle"    "light"     "changing"  "oval"      "light"     "circle"   
[82057] "flash"     "other"     "unknown"   "triangle"  "triangle"  "other"    
[82063] "sphere"    "formation" "cigar"     "oval"      "egg"       "light"    
[82069] "other"     NA          "disk"      "light"     "triangle"  "sphere"   
[82075] "light"     "triangle"  "light"     "unknown"   "light"     "chevron"  
[82081] "fireball"  "flash"     "diamond"   "teardrop"  NA          "changing" 
[82087] "light"     "disk"      "light"     "oval"      "unknown"   "light"    
[82093] "light"     "light"     "triangle"  "light"     "triangle"  "circle"   
[82099] "other"     "oval"      "triangle"  "disk"      "circle"    "cigar"    
[82105] "sphere"    "triangle"  "light"     "disk"      "light"     "cigar"    
[82111] "disk"      "disk"      "sphere"    "disk"      "teardrop"  "diamond"  
[82117] "light"     "circle"    "other"     "light"     NA          "fireball" 
[82123] "triangle"  "fireball"  "light"     "light"     "light"     "formation"
[82129] "triangle"  "cigar"     "disk"      "diamond"   "triangle"  "light"    
[82135] "circle"    "unknown"   "chevron"   "light"     "light"     "formation"
[82141] "light"     "changing"  "light"     "oval"      "sphere"    "circle"   
[82147] "triangle"  "unknown"   "disk"      "flash"     "circle"    "triangle" 
[82153] "sphere"    "sphere"    "unknown"   "light"     "other"     "triangle" 
[82159] "light"     "light"     "light"     "light"     "light"     "other"    
[82165] "light"     "unknown"   "cigar"     "triangle"  "triangle"  "diamond"  
[82171] "light"     "sphere"    "sphere"    "light"     "sphere"    "oval"     
[82177] "unknown"   "unknown"   "triangle"  "circle"    "unknown"   "light"    
[82183] "unknown"   "light"     "light"     "light"     "light"     "changing" 
[82189] "light"     "unknown"   NA          "fireball"  "diamond"   "oval"     
[82195] "disk"      "light"     "circle"    "circle"    "light"     "oval"     
[82201] "circle"    "fireball"  "fireball"  "sphere"    "other"     "fireball" 
[82207] "fireball"  "disk"      "fireball"  "unknown"   "changing"  "light"    
[82213] "sphere"    "circle"    "fireball"  "circle"    "disk"      "cigar"    
[82219] "light"     NA          "circle"    "disk"      "circle"    "disk"     
[82225] "other"     "disk"      "unknown"   "triangle"  "triangle"  "disk"     
[82231] "other"     "light"     "oval"      "triangle"  "circle"    NA         
[82237] NA          NA          NA          NA          "other"     "disk"     
[82243] "disk"      "disk"      "light"     "cigar"     NA          "sphere"   
[82249] "fireball"  "flash"     "circle"    "fireball"  "cylinder"  "cylinder" 
[82255] "changing"  "light"     "triangle"  "diamond"   "circle"    "unknown"  
[82261] "cone"      "cylinder"  "egg"       "sphere"    "diamond"   "unknown"  
[82267] "egg"       "triangle"  "light"     "light"     "circle"    "light"    
[82273] "light"     "light"     "rectangle" "light"     "chevron"   "triangle" 
[82279] "triangle"  "circle"    "triangle"  "triangle"  "circle"    "unknown"  
[82285] "disk"      "unknown"   "rectangle" "unknown"   "triangle"  "cylinder" 
[82291] "cylinder"  "fireball"  "circle"    "circle"    "circle"    "unknown"  
[82297] "changing"  "light"     "light"     "light"     "light"     "light"    
[82303] "sphere"    "other"     "changing"  "light"     "changing"  "triangle" 
[82309] "chevron"   "triangle"  "fireball"  "fireball"  "other"     "formation"
[82315] "light"     "rectangle" "flash"     "sphere"    "teardrop"  "triangle" 
[82321] "changing"  "other"     "light"     "circle"    "rectangle" "circle"   
[82327] "unknown"   "circle"    "triangle"  "circle"    "cylinder"  "circle"   
[82333] "triangle"  "other"     "circle"    "light"     "triangle"  "unknown"  
[82339] "other"     "other"     "triangle"  "light"     "unknown"   "circle"   
[82345] "unknown"   "other"     "circle"    "oval"      "triangle"  "rectangle"
[82351] "disk"      "sphere"    "triangle"  "unknown"   "disk"      "unknown"  
[82357] "other"     "light"     "circle"    "unknown"   "light"     "circle"   
[82363] "light"     "unknown"   "fireball"  NA          "formation" "sphere"   
[82369] "diamond"   "unknown"   "unknown"   "unknown"   "light"     "other"    
[82375] "cigar"     "triangle"  "triangle"  "light"     "circle"    "circle"   
[82381] "other"     "diamond"   "disk"      "light"     "light"     "light"    
[82387] "unknown"   "fireball"  "unknown"   "sphere"    "unknown"   "fireball" 
[82393] "light"     "cylinder"  "fireball"  "light"     "disk"      "circle"   
[82399] "fireball"  "other"     "fireball"  NA          "fireball"  "other"    
[82405] "unknown"   "fireball"  "unknown"   "teardrop"  "unknown"   "light"    
[82411] "fireball"  "fireball"  "light"     "chevron"   "fireball"  "light"    
[82417] "fireball"  "circle"    "formation" "flash"     "unknown"   "triangle" 
[82423] "circle"    "sphere"    "sphere"    "unknown"   "fireball"  "chevron"  
[82429] "fireball"  "light"     "diamond"   "oval"      "sphere"    "fireball" 
[82435] "light"     "cylinder"  "light"     "oval"      "triangle"  "triangle" 
[82441] "triangle"  "sphere"    "unknown"   "unknown"   "light"     "rectangle"
[82447] "fireball"  "light"     "disk"      "fireball"  "circle"    "sphere"   
[82453] "fireball"  "other"     "rectangle" "light"     "fireball"  "circle"   
[82459] "circle"    "light"     "light"     "light"     "light"     "circle"   
[82465] "fireball"  "circle"    "light"     "circle"    "sphere"    "light"    
[82471] "fireball"  "light"     "fireball"  "light"     "circle"    "oval"     
[82477] "disk"      NA          NA          "light"     "fireball"  "circle"   
[82483] "light"     "cone"      "fireball"  "fireball"  "rectangle" "unknown"  
[82489] "unknown"   "disk"      "rectangle" "circle"    "disk"      "disk"     
[82495] NA          "other"     "circle"    "disk"      "fireball"  "disk"     
[82501] "light"     "disk"      "oval"      "circle"    "disk"      NA         
[82507] "other"     "egg"       "disk"      "unknown"   "disk"      "disk"     
[82513] "disk"      "disk"      "disk"      "disk"      "egg"       "triangle" 
[82519] "light"     "changing"  "unknown"   "sphere"    "flash"     "cigar"    
[82525] "cigar"     "triangle"  "triangle"  "light"     "cigar"     "disk"     
[82531] "circle"    "circle"    "disk"      "cigar"     "fireball"  "unknown"  
[82537] "diamond"   "unknown"   "chevron"   "disk"      "oval"      "circle"   
[82543] NA          "disk"      "disk"      "unknown"   "oval"      "sphere"   
[82549] "disk"      "light"     "teardrop"  "disk"      NA          NA         
[82555] "oval"      "unknown"   "disk"      "light"     "triangle"  "chevron"  
[82561] "disk"      "disk"      "triangle"  "light"     NA          "rectangle"
[82567] "other"     "cylinder"  "disk"      "chevron"   "disk"      "fireball" 
[82573] "unknown"   "cigar"     "sphere"    "oval"      "light"     "oval"     
[82579] "other"     "other"     NA          "light"     "disk"      "disk"     
[82585] "triangle"  "triangle"  NA          "triangle"  "oval"      "disk"     
[82591] NA          "light"     "diamond"   "triangle"  "disk"      "triangle" 
[82597] "disk"      "oval"      "light"     "disk"      "cylinder"  "light"    
[82603] "oval"      "light"     "light"     "unknown"   "triangle"  "triangle" 
[82609] "other"     "cigar"     "rectangle" "circle"    "light"     "light"    
[82615] "cone"      "disk"      "light"     "chevron"   "rectangle" "sphere"   
[82621] "triangle"  "triangle"  "oval"      "triangle"  "triangle"  "light"    
[82627] "other"     "oval"      "light"     "oval"      "light"     "sphere"   
[82633] "other"     "other"     "cigar"     "other"     "triangle"  "cigar"    
[82639] "unknown"   "triangle"  "light"     "unknown"   "unknown"   "circle"   
[82645] "light"     "unknown"   "rectangle" "cigar"     "other"     "triangle" 
[82651] "disk"      "triangle"  "light"     "triangle"  "sphere"    "circle"   
[82657] "light"     "chevron"   "disk"      "cigar"     "formation" "sphere"   
[82663] "light"     "circle"    "light"     "triangle"  "cigar"     "oval"     
[82669] "disk"      "other"     NA          "disk"      "triangle"  "oval"     
[82675] "disk"      "light"     "disk"      "other"     NA          "other"    
[82681] NA          "light"     "sphere"    "disk"      NA          NA         
[82687] "unknown"   NA          "teardrop"  "light"     "sphere"    "cylinder" 
[82693] "light"     "unknown"   "unknown"   "triangle"  "other"     "triangle" 
[82699] "fireball"  "fireball"  "disk"      "cigar"     "rectangle" "cylinder" 
[82705] "disk"      "triangle"  "circle"    NA          "light"     "chevron"  
[82711] "unknown"   "light"     "unknown"   "light"     "sphere"    "sphere"   
[82717] "sphere"    "cylinder"  "egg"       "circle"    "other"     "sphere"   
[82723] "triangle"  "other"     "fireball"  "sphere"    "cigar"     "light"    
[82729] "egg"       "light"     NA          "disk"      "unknown"   "circle"   
[82735] "unknown"   "changing"  "light"     "fireball"  "light"     NA         
[82741] "triangle"  "sphere"    "circle"    "triangle"  "light"     "triangle" 
[82747] "circle"    "unknown"   "light"     "fireball"  "unknown"   "triangle" 
[82753] "light"     "triangle"  "changing"  "triangle"  "triangle"  "disk"     
[82759] "fireball"  "unknown"   NA          NA          "triangle"  "disk"     
[82765] "disk"      "other"     "rectangle" "triangle"  "disk"      "light"    
[82771] "other"     "egg"       "disk"      "triangle"  "unknown"   "light"    
[82777] "disk"      "triangle"  "other"     "flash"     "disk"      "oval"     
[82783] "light"     "unknown"   "triangle"  "light"     "circle"    "light"    
[82789] "circle"    "chevron"   "light"     "rectangle" "teardrop"  "disk"     
[82795] "unknown"   "circle"    "light"     "light"     "other"     "sphere"   
[82801] "other"     "other"     "circle"    "light"     "unknown"   "other"    
[82807] "oval"      "light"     "light"     "fireball"  "flash"     "cone"     
[82813] "disk"      "disk"      "unknown"   "sphere"    "disk"      "triangle" 
[82819] "triangle"  "oval"      "triangle"  "fireball"  "disk"      "formation"
[82825] "light"     "sphere"    "oval"      "other"     "formation" "formation"
[82831] "circle"    NA          "other"     "circle"    "diamond"   "unknown"  
[82837] "light"     "other"     "cylinder"  "rectangle" "formation" "light"    
[82843] "cigar"     "light"     "light"     "circle"    "light"     "circle"   
[82849] NA          "triangle"  "unknown"   "unknown"   "disk"      "disk"     
[82855] "formation" "formation" "fireball"  "oval"      "circle"    "triangle" 
[82861] "other"     "disk"      "disk"      "triangle"  "rectangle" "triangle" 
[82867] "light"     "rectangle" "circle"    "light"     "unknown"   "sphere"   
[82873] "cigar"     "fireball"  "triangle"  NA          "light"     "triangle" 
[82879] "changing"  "oval"      "oval"      "triangle"  "disk"      "cigar"    
[82885] "oval"      "disk"      "other"     "light"     "sphere"    "light"    
[82891] "triangle"  "light"     "circle"    "circle"    "light"     "light"    
[82897] "fireball"  "changing"  "oval"      "cigar"     "circle"    "fireball" 
[82903] "light"     "sphere"    "disk"      "circle"    "circle"    "sphere"   
[82909] "unknown"   "other"     "rectangle" "light"     "light"     "triangle" 
[82915] "light"     "light"     "light"     "changing"  "light"     "sphere"   
[82921] "diamond"   "triangle"  "light"     "light"     "other"     "teardrop" 
[82927] "other"     "light"     "sphere"    "sphere"    "disk"      "disk"     
[82933] "formation" "cigar"     "fireball"  "triangle"  "fireball"  "unknown"  
[82939] "circle"    "formation" "light"     "unknown"   "triangle"  "triangle" 
[82945] "triangle"  "formation" "changing"  "fireball"  "disk"      "triangle" 
[82951] "fireball"  "circle"    "disk"      "oval"      "circle"    "light"    
[82957] "unknown"   "oval"      "sphere"    "light"     "light"     "formation"
[82963] "sphere"    "light"     "unknown"   "light"     "light"     "light"    
[82969] "light"     "sphere"    "light"     "chevron"   NA          "other"    
[82975] "cigar"     "disk"      "sphere"    "sphere"    "circle"    "triangle" 
[82981] "other"     "circle"    "light"     "light"     "circle"    "other"    
[82987] "diamond"   "triangle"  "circle"    "other"     "sphere"    "disk"     
[82993] "disk"      "light"     "formation" "flash"     "changing"  "changing" 
[82999] "light"     "fireball"  "fireball"  "light"     "flash"     "flash"    
[83005] "disk"      "sphere"    "light"     "sphere"    "rectangle" "triangle" 
[83011] "other"     "changing"  "light"     "light"     "light"     "light"    
[83017] "unknown"   "oval"      "formation" "disk"      "disk"      "cigar"    
[83023] "fireball"  "light"     "light"     "triangle"  "light"     "unknown"  
[83029] "triangle"  "fireball"  "changing"  "unknown"   "circle"    "light"    
[83035] "egg"       "circle"    "fireball"  "light"     "fireball"  "oval"     
[83041] "sphere"    NA          "sphere"    "sphere"    "circle"    "circle"   
[83047] "fireball"  "fireball"  "fireball"  "light"     "light"     "triangle" 
[83053] "triangle"  "circle"    "triangle"  NA          "fireball"  "sphere"   
[83059] "fireball"  "cigar"     "light"     "formation" "light"     "fireball" 
[83065] "light"     "fireball"  "oval"      "light"     "formation" "rectangle"
[83071] "unknown"   "triangle"  "cigar"     "oval"      "oval"      "oval"     
[83077] "circle"    "circle"    "oval"      "other"     "chevron"   "other"    
[83083] "disk"      "oval"      "changing"  "oval"      "light"     NA         
[83089] NA          "disk"      "diamond"   "oval"      "oval"      "disk"     
[83095] "other"     "light"     "disk"      "circle"    "egg"       "light"    
[83101] "circle"    "circle"    "unknown"   "triangle"  "formation" "sphere"   
[83107] "cigar"     "triangle"  "diamond"   "fireball"  "formation" "unknown"  
[83113] "circle"    "other"     "fireball"  "rectangle" "sphere"    "cigar"    
[83119] "unknown"   "circle"    "teardrop"  "light"     "unknown"   "circle"   
[83125] "circle"    "fireball"  "light"     "light"     "circle"    "other"    
[83131] "other"     "triangle"  "light"     "changing"  "changing"  "disk"     
[83137] "unknown"   "diamond"   "circle"    "sphere"    "oval"      "sphere"   
[83143] "light"     "triangle"  "light"     "light"     "unknown"   "light"    
[83149] "light"     "unknown"   "light"     "light"     "disk"      "sphere"   
[83155] "disk"      "light"     "disk"      "light"     "triangle"  "unknown"  
[83161] "sphere"    "unknown"   "light"     "light"     "formation" "other"    
[83167] "other"     "rectangle" "light"     "sphere"    "changing"  "formation"
[83173] "unknown"   "triangle"  "unknown"   "circle"    "changing"  "sphere"   
[83179] "fireball"  "rectangle" "other"     "changing"  "sphere"    "unknown"  
[83185] "unknown"   "light"     "other"     "light"     "diamond"   "fireball" 
[83191] "disk"      "triangle"  "changing"  "light"     "triangle"  "triangle" 
[83197] NA          "light"     "light"     "teardrop"  "light"     "other"    
[83203] "triangle"  "cigar"     "light"     "chevron"   "triangle"  "oval"     
[83209] "formation" "formation" "circle"    "sphere"    "light"     "fireball" 
[83215] "light"     "teardrop"  "cigar"     "chevron"   "disk"      "oval"     
[83221] "light"     "unknown"   "flash"     "fireball"  "other"     "diamond"  
[83227] "circle"    "light"     "light"     "unknown"   "unknown"   "oval"     
[83233] "other"     "disk"      "triangle"  "light"     "other"     "light"    
[83239] "circle"    "sphere"    "disk"      "fireball"  "sphere"    "triangle" 
[83245] "oval"      "fireball"  "light"     "fireball"  "circle"    "light"    
[83251] "light"     "fireball"  "light"     "oval"      "circle"    "circle"   
[83257] "light"     "unknown"   "triangle"  "light"     "other"     "disk"     
[83263] "oval"      "other"     "triangle"  "sphere"    "fireball"  "light"    
[83269] "light"     "fireball"  "unknown"   "light"     "other"     "circle"   
[83275] "unknown"   "disk"      "light"     "changing"  "light"     "changing" 
[83281] "unknown"   "other"     "unknown"   "light"     "rectangle" "cylinder" 
[83287] "circle"    "formation" "disk"      "triangle"  "other"     "other"    
[83293] "disk"      NA          NA          "triangle"  "formation" "disk"     
[83299] "sphere"    "disk"      "other"     "light"     "other"     "sphere"   
[83305] "fireball"  "circle"    "sphere"    "circle"    "circle"    "disk"     
[83311] "circle"    "unknown"   "triangle"  "oval"      "flash"     "triangle" 
[83317] "fireball"  "cigar"     "chevron"   "light"     "light"     "chevron"  
[83323] "chevron"   "chevron"   "triangle"  "fireball"  "light"     "circle"   
[83329] "flash"     "triangle"  "unknown"   "fireball"  "light"     "disk"     
[83335] "fireball"  "unknown"   "unknown"   "flash"     "light"     "changing" 
[83341] "light"     "light"     "triangle"  "egg"       "sphere"    "oval"     
[83347] "light"     NA          "light"     "unknown"   "rectangle" "circle"   
[83353] "circle"    "light"     "triangle"  "sphere"    "oval"      "formation"
[83359] "triangle"  "sphere"    "oval"      "sphere"    "sphere"    "disk"     
[83365] "cigar"     "rectangle" "triangle"  "triangle"  "disk"      "triangle" 
[83371] "light"     "teardrop"  "light"     "disk"      "light"     "triangle" 
[83377] "cylinder"  "disk"      "oval"      "disk"      "cigar"     "formation"
[83383] "triangle"  "circle"    "light"     "formation" "light"     "fireball" 
[83389] "fireball"  "diamond"   "light"     "chevron"   "cylinder"  "disk"     
[83395] "light"     "light"     "other"     "sphere"    "unknown"   "light"    
[83401] "light"     "formation" "light"     "disk"      "triangle"  "unknown"  
[83407] "light"     "light"     "cigar"     "light"     "triangle"  "unknown"  
[83413] "triangle"  "light"     "light"     "light"     "light"     "circle"   
[83419] "unknown"   "disk"      "sphere"    "formation" "circle"    "light"    
[83425] "other"     "changing"  "fireball"  "circle"    "circle"    "egg"      
[83431] "light"     "circle"    "triangle"  "unknown"   "light"     "other"    
[83437] "other"     "unknown"   "light"     "fireball"  "changing"  "circle"   
[83443] "unknown"   "light"     "flash"     "triangle"  "triangle"  "changing" 
[83449] "cone"      "unknown"   NA          "light"     "triangle"  "unknown"  
[83455] "circle"    "triangle"  "light"     "formation" "cigar"     "circle"   
[83461] "circle"    "chevron"   "disk"      "light"     "other"     "light"    
[83467] "triangle"  "unknown"   "flash"     "triangle"  "triangle"  "light"    
[83473] "disk"      "flash"     "unknown"   "oval"      "circle"    "oval"     
[83479] "disk"      "fireball"  "fireball"  "light"     "diamond"   "unknown"  
[83485] "sphere"    "light"     "other"     "formation" "triangle"  "oval"     
[83491] "formation" "sphere"    "triangle"  "disk"      "oval"      "circle"   
[83497] "cone"      "light"     "circle"    "circle"    "circle"    "unknown"  
[83503] "circle"    "light"     "light"     "oval"      "light"     "light"    
[83509] "other"     "light"     "light"     "light"     "disk"      "fireball" 
[83515] "fireball"  "light"     "triangle"  NA          "sphere"    "triangle" 
[83521] "changing"  "other"     "circle"    "changing"  NA          "unknown"  
[83527] "circle"    "light"     "cigar"     NA          "cylinder"  "fireball" 
[83533] "rectangle" "changing"  "triangle"  NA          NA          NA         
[83539] NA          NA          "fireball"  "changing"  "unknown"   "circle"   
[83545] "changing"  "oval"      "unknown"   "oval"      "fireball"  "triangle" 
[83551] "fireball"  NA          "formation" "formation" "unknown"   NA         
[83557] "sphere"    "light"     "circle"    "light"     "circle"    "unknown"  
[83563] "disk"      "oval"      "light"     "changing"  "sphere"    "flash"    
[83569] "light"     "light"     "oval"      "circle"    "circle"    "light"    
[83575] "light"     "light"     "light"     "disk"      "disk"      "disk"     
[83581] "circle"    "cylinder"  NA          "other"     "unknown"   "other"    
[83587] "light"     "flash"     "other"     "light"     "sphere"    "sphere"   
[83593] "cigar"     "flash"     "circle"    "sphere"    "chevron"   "oval"     
[83599] "rectangle" "flash"     "sphere"    "unknown"   "disk"      "disk"     
[83605] "light"     "diamond"   "triangle"  "light"     "unknown"   "formation"
[83611] "unknown"   "sphere"    "triangle"  "circle"    NA          "triangle" 
[83617] "light"     "disk"      "chevron"   "formation" "light"     "light"    
[83623] "flash"     "light"     "oval"      "disk"      "disk"      "triangle" 
[83629] "light"     "fireball"  "light"     "cigar"     "light"     "other"    
[83635] "fireball"  "oval"      "light"     "light"     "light"     "chevron"  
[83641] "sphere"    "other"     "light"     "circle"    "other"     "light"    
[83647] "fireball"  "light"     "rectangle" "circle"    "triangle"  "light"    
[83653] "triangle"  "triangle"  "cone"      "circle"    "changing"  "formation"
[83659] "cone"      "unknown"   NA          "light"     "circle"    "light"    
[83665] "other"     "disk"      "rectangle" "oval"      "triangle"  "circle"   
[83671] "teardrop"  "oval"      "light"     "disk"      "diamond"   "light"    
[83677] "sphere"    "light"     "light"     "light"     "triangle"  "light"    
[83683] "fireball"  "fireball"  "circle"    "circle"    "disk"      "circle"   
[83689] "light"     "light"     "oval"      "changing"  "formation" "light"    
[83695] "sphere"    "sphere"    "diamond"   "light"     "egg"       "cylinder" 
[83701] "light"     "circle"    "sphere"    "fireball"  "light"     "triangle" 
[83707] "teardrop"  NA          "fireball"  "sphere"    "other"     "light"    
[83713] "light"     "triangle"  "unknown"   "teardrop"  "light"     "circle"   
[83719] "disk"      "triangle"  "circle"    "circle"    "other"     "light"    
[83725] NA          "other"     "circle"    "sphere"    "triangle"  "circle"   
[83731] "disk"      "triangle"  "circle"    NA          "light"     "disk"     
[83737] "light"     "oval"      NA          "light"     "circle"    "fireball" 
[83743] "light"     "disk"      "egg"       "formation" "triangle"  NA         
[83749] "light"     "triangle"  "fireball"  "cylinder"  "circle"    "circle"   
[83755] "diamond"   NA          "light"     "light"     "light"     "light"    
[83761] "triangle"  "formation" "light"     "cigar"     "cigar"     "light"    
[83767] "fireball"  NA          "circle"    "light"     "unknown"   "circle"   
[83773] "light"     "oval"      "light"     "unknown"   NA          NA         
[83779] NA          "changing"  "triangle"  "oval"      "rectangle" "other"    
[83785] "disk"      "triangle"  "egg"       "disk"      "disk"      "egg"      
[83791] "triangle"  "cigar"     "flash"     "disk"      "other"     "other"    
[83797] "light"     "light"     "disk"      "sphere"    "fireball"  "other"    
[83803] "sphere"    "triangle"  "circle"    "triangle"  "light"     "light"    
[83809] "formation" "light"     "light"     "fireball"  "flash"     "flash"    
[83815] "triangle"  "triangle"  NA          "other"     "other"     "unknown"  
[83821] "disk"      "triangle"  "triangle"  "triangle"  "other"     "disk"     
[83827] "light"     "cone"      "other"     NA          "fireball"  "unknown"  
[83833] "fireball"  "light"     "sphere"    "other"     "unknown"   "light"    
[83839] "fireball"  "sphere"    "light"     "changing"  "cylinder"  "light"    
[83845] "circle"    "sphere"    "changing"  "light"     "unknown"   "chevron"  
[83851] "light"     "changing"  "unknown"   "flash"     "rectangle" "light"    
[83857] "cylinder"  "circle"    "teardrop"  "teardrop"  "oval"      "oval"     
[83863] "oval"      "light"     "sphere"    "sphere"    "light"     "changing" 
[83869] "light"     "other"     "triangle"  "light"     "cigar"     "triangle" 
[83875] "cigar"     "light"     "cigar"     "cigar"     "light"     "flash"    
[83881] "light"     "light"     "egg"       "light"     "unknown"   "other"    
[83887] "light"     "fireball"  "circle"    "disk"      "disk"      "sphere"   
[83893] "light"     "other"     "light"     "circle"    "light"     "cigar"    
[83899] "unknown"   "cross"     "other"     "light"     "formation" "diamond"  
[83905] "triangle"  "disk"      "egg"       "sphere"    "unknown"   "sphere"   
[83911] "unknown"   "light"     "cylinder"  "unknown"   "light"     "unknown"  
[83917] "changing"  "light"     "light"     "sphere"    "light"     "unknown"  
[83923] "cigar"     "fireball"  "light"     "triangle"  "light"     "cylinder" 
[83929] "disk"      "circle"    "circle"    "light"     "formation" "circle"   
[83935] "triangle"  "changing"  "fireball"  "oval"      "fireball"  "sphere"   
[83941] "cylinder"  "changing"  "teardrop"  "triangle"  "triangle"  "oval"     
[83947] "light"     "unknown"   "light"     "disk"      "flash"     "egg"      
[83953] "circle"    "light"     "oval"      "circle"    "light"     "light"    
[83959] "light"     "light"     "triangle"  "light"     "cylinder"  "disk"     
[83965] "flash"     "triangle"  "cone"      "sphere"    "triangle"  "disk"     
[83971] "circle"    "cone"      "circle"    "light"     "unknown"   "cone"     
[83977] "unknown"   "unknown"   "sphere"    "light"     "disk"      "light"    
[83983] "other"     "light"     "cone"      "light"     "circle"    "light"    
[83989] "circle"    "light"     "cone"      "cone"      "oval"      "unknown"  
[83995] "light"     "light"     NA          "cone"      NA          "circle"   
[84001] "triangle"  "sphere"    "cone"      "light"     "light"     "light"    
[84007] "diamond"   "light"     "light"     "cigar"     "cone"      "light"    
[84013] "light"     "cone"      "light"     "fireball"  "light"     "light"    
[84019] "light"     "light"     "unknown"   "light"     "light"     "unknown"  
[84025] "changing"  "circle"    "cone"      "fireball"  "oval"      "cone"     
[84031] "light"     "cone"      "light"     "triangle"  "cone"      "oval"     
[84037] "fireball"  "light"     "circle"    "other"     "circle"    "cone"     
[84043] "light"     "flash"     "light"     "light"     "oval"      "other"    
[84049] "unknown"   "unknown"   "light"     "circle"    "formation" "light"    
[84055] "light"     "light"     "teardrop"  "formation" "light"     "circle"   
[84061] "fireball"  "other"     "unknown"   "light"     "light"     "circle"   
[84067] "light"     "changing"  "cylinder"  "unknown"   "fireball"  "disk"     
[84073] "cigar"     "light"     "circle"    "sphere"    "sphere"    "triangle" 
[84079] "unknown"   "unknown"   "light"     "triangle"  "light"     "disk"     
[84085] "disk"      "rectangle" "other"     "light"     "disk"      "triangle" 
[84091] "circle"    "fireball"  "sphere"    "unknown"   "light"     "light"    
[84097] "teardrop"  "sphere"    "other"     "circle"    "circle"    "fireball" 
[84103] "fireball"  "light"     "sphere"    "sphere"    "disk"      "triangle" 
[84109] "circle"    "circle"    "other"     "light"     "light"     "fireball" 
[84115] "disk"      "circle"    "cigar"     "fireball"  "unknown"   "sphere"   
[84121] "unknown"   "triangle"  "other"     "light"     "cigar"     "triangle" 
[84127] "disk"      "disk"      "chevron"   "circle"    "oval"      "light"    
[84133] "cigar"     "cigar"     "chevron"   "oval"      "light"     "circle"   
[84139] "sphere"    "rectangle" "circle"    "disk"      "circle"    "changing" 
[84145] "unknown"   "disk"      "teardrop"  "disk"      "unknown"   "unknown"  
[84151] "flash"     "unknown"   "circle"    "sphere"    "teardrop"  "triangle" 
[84157] "other"     "fireball"  "sphere"    "fireball"  "fireball"  "other"    
[84163] "triangle"  "circle"    NA          "oval"      "diamond"   "fireball" 
[84169] NA          "cylinder"  NA          "disk"      "light"     "triangle" 
[84175] "other"     "circle"    "sphere"    "flash"     "light"     "unknown"  
[84181] "disk"      "circle"    "triangle"  "light"     "circle"    "triangle" 
[84187] "sphere"    "cigar"     "light"     "light"     "sphere"    "sphere"   
[84193] "circle"    "oval"      "cigar"     "changing"  "other"     "triangle" 
[84199] "fireball"  "sphere"    "triangle"  "formation" "other"     "triangle" 
[84205] "other"     "triangle"  "changing"  "other"     "sphere"    "unknown"  
[84211] "light"     "rectangle" "flash"     "triangle"  "light"     "unknown"  
[84217] "sphere"    "disk"      "light"     "circle"    "disk"      "teardrop" 
[84223] "oval"      "light"     "triangle"  "formation" "light"     "formation"
[84229] "light"     "triangle"  "disk"      NA          NA          "light"    
[84235] "disk"      "cylinder"  "unknown"   "light"     "other"     "light"    
[84241] "light"     "fireball"  "light"     "circle"    "unknown"   "cigar"    
[84247] "rectangle" "other"     "oval"      "sphere"    "cigar"     "cross"    
[84253] "light"     "other"     "light"     "unknown"   "disk"      "triangle" 
[84259] "triangle"  "triangle"  "flash"     "fireball"  "circle"    "light"    
[84265] "light"     "fireball"  "disk"      "fireball"  "light"     "sphere"   
[84271] "changing"  "cylinder"  "fireball"  "cone"      "light"     NA         
[84277] NA          "disk"      "circle"    "formation" "flash"     "other"    
[84283] "unknown"   "light"     "triangle"  "teardrop"  "circle"    "unknown"  
[84289] "sphere"    "triangle"  "circle"    "light"     "light"     "light"    
[84295] "light"     "other"     "flash"     "cigar"     "light"     "rectangle"
[84301] "disk"      "other"     "fireball"  "disk"      "other"     "triangle" 
[84307] "cigar"     "cylinder"  "triangle"  "circle"    "light"     "light"    
[84313] "light"     "circle"    "unknown"   "other"     "cone"      "unknown"  
[84319] "circle"    "formation" "circle"    "light"     "triangle"  "disk"     
[84325] "circle"    "changing"  "circle"    "cigar"     "sphere"    "light"    
[84331] "unknown"   "oval"      "light"     "light"     "egg"       "circle"   
[84337] "light"     "fireball"  "circle"    "light"     "light"     "triangle" 
[84343] "fireball"  "light"     "light"     "other"     "oval"      "cigar"    
[84349] "light"     "circle"    "light"     "light"     "disk"      "flash"    
[84355] "circle"    "cylinder"  "triangle"  "light"     "light"     "circle"   
[84361] "sphere"    "changing"  "unknown"   "cigar"     "oval"      "oval"     
[84367] "fireball"  "sphere"    "changing"  "fireball"  "other"     "triangle" 
[84373] "unknown"   "rectangle" "sphere"    "oval"      "light"     "circle"   
[84379] "unknown"   "changing"  "fireball"  "circle"    "triangle"  "other"    
[84385] "cigar"     "unknown"   "light"     "fireball"  "formation" "sphere"   
[84391] "oval"      "fireball"  "triangle"  "light"     "light"     "light"    
[84397] "light"     "cylinder"  "fireball"  "other"     "changing"  "circle"   
[84403] "light"     "cylinder"  "fireball"  "triangle"  "other"     "light"    
[84409] "unknown"   "light"     "circle"    "disk"      "fireball"  "unknown"  
[84415] "light"     "unknown"   "fireball"  "light"     "fireball"  "other"    
[84421] "sphere"    "flash"     "light"     "circle"    "triangle"  "fireball" 
[84427] "teardrop"  "fireball"  "triangle"  "sphere"    "triangle"  "triangle" 
[84433] "changing"  "unknown"   "unknown"   "circle"    "triangle"  NA         
[84439] "light"     "unknown"   "changing"  "light"     "triangle"  "fireball" 
[84445] "oval"      "triangle"  "light"     "other"     "circle"    NA         
[84451] NA          "other"     "triangle"  "disk"      "sphere"    "changing" 
[84457] "light"     "other"     "oval"      "formation" "other"     "light"    
[84463] "disk"      "circle"    "chevron"   "fireball"  "fireball"  "oval"     
[84469] "disk"      "changing"  "light"     "unknown"   "circle"    "circle"   
[84475] "oval"      "disk"      "fireball"  "oval"      "oval"      "other"    
[84481] "disk"      "triangle"  "cigar"     "disk"      "oval"      "oval"     
[84487] "rectangle" "flash"     "fireball"  "circle"    "other"     "sphere"   
[84493] "teardrop"  "light"     "triangle"  "light"     "triangle"  "fireball" 
[84499] NA          "other"     "unknown"   "oval"      "sphere"    "disk"     
[84505] "circle"    "light"     "light"     "other"     "triangle"  "other"    
[84511] "sphere"    "oval"      "other"     "teardrop"  "fireball"  "circle"   
[84517] "flash"     "other"     "disk"      "oval"      "oval"      "sphere"   
[84523] "light"     "triangle"  "circle"    "oval"      "light"     "light"    
[84529] "oval"      "flash"     "cone"      "disk"      "disk"      "other"    
[84535] "light"     "disk"      "oval"      "unknown"   "light"     "other"    
[84541] "light"     "light"     "disk"      "flash"     "light"     "other"    
[84547] "unknown"   "disk"      "oval"      "teardrop"  "light"     "triangle" 
[84553] "cigar"     "disk"      "changing"  "fireball"  "formation" "oval"     
[84559] "light"     "unknown"   "light"     "cigar"     "changing"  "cigar"    
[84565] "cigar"     "disk"      "chevron"   "diamond"   "cigar"     "sphere"   
[84571] "cigar"     "other"     "cigar"     "circle"    "other"     "triangle" 
[84577] "triangle"  "triangle"  "triangle"  "fireball"  "triangle"  "circle"   
[84583] "unknown"   "unknown"   "cigar"     "sphere"    "sphere"    "oval"     
[84589] "flash"     "sphere"    "diamond"   "cigar"     "light"     "light"    
[84595] "unknown"   "other"     "unknown"   "cylinder"  "sphere"    "sphere"   
[84601] "fireball"  "light"     "triangle"  "circle"    "fireball"  "light"    
[84607] "light"     "sphere"    "light"     "teardrop"  "unknown"   "chevron"  
[84613] "light"     "circle"    "light"     "sphere"    "oval"      "other"    
[84619] "circle"    "oval"      "oval"      "oval"      "light"     "sphere"   
[84625] "other"     "flash"     "triangle"  "circle"    "fireball"  "changing" 
[84631] "egg"       "fireball"  "cylinder"  "fireball"  "circle"    "oval"     
[84637] "triangle"  "sphere"    "circle"    "circle"    NA          NA         
[84643] "disk"      "other"     "circle"    "circle"    "fireball"  "other"    
[84649] "light"     "oval"      "other"     "egg"       "circle"    "triangle" 
[84655] "unknown"   "fireball"  "rectangle" "other"     "oval"      "fireball" 
[84661] "formation" "light"     "fireball"  "circle"    "fireball"  "fireball" 
[84667] "unknown"   "fireball"  "unknown"   "fireball"  "disk"      "other"    
[84673] "formation" "circle"    "fireball"  "other"     "fireball"  "oval"     
[84679] "changing"  "other"     "sphere"    "flash"     "disk"      "other"    
[84685] "circle"    "sphere"    "cylinder"  "sphere"    "unknown"   NA         
[84691] "circle"    "cylinder"  "fireball"  "fireball"  "cross"     "other"    
[84697] "disk"      "circle"    "light"     "fireball"  "cross"     "fireball" 
[84703] "unknown"   "light"     "fireball"  "sphere"    "fireball"  "circle"   
[84709] "formation" "oval"      "unknown"   "light"     "formation" "oval"     
[84715] "unknown"   "fireball"  "formation" "light"     "fireball"  "disk"     
[84721] "light"     "triangle"  "sphere"    "rectangle" "other"     "triangle" 
[84727] "disk"      "light"     "unknown"   NA          "formation" "disk"     
[84733] "unknown"   "formation" "light"     "formation" "circle"    "oval"     
[84739] "triangle"  "disk"      "other"     NA          "other"     "unknown"  
[84745] "light"     "light"     NA          "sphere"    "changing"  "cylinder" 
[84751] "light"     "light"     NA          "disk"      "cigar"     "circle"   
[84757] "light"     "other"     "other"     "disk"      "flash"     "oval"     
[84763] "circle"    "sphere"    "fireball"  "teardrop"  "other"     "oval"     
[84769] "cross"     "formation" "sphere"    "light"     "chevron"   "other"    
[84775] "light"     "triangle"  NA          "light"     "unknown"   "light"    
[84781] "sphere"    "light"     "oval"      "sphere"    "triangle"  "circle"   
[84787] "light"     "light"     "light"     "light"     "unknown"   "light"    
[84793] "light"     "unknown"   "oval"      "fireball"  "fireball"  "sphere"   
[84799] "circle"    "light"     "flash"     "cigar"     "circle"    "cigar"    
[84805] "oval"      "light"     "light"     "cylinder"  "fireball"  "light"    
[84811] "circle"    "unknown"   "light"     NA          "light"     "light"    
[84817] "circle"    "cigar"     "light"     "triangle"  "circle"    "cigar"    
[84823] "light"     "other"     NA          "light"     "circle"    "changing" 
[84829] "cigar"     "sphere"    "oval"      "cylinder"  "circle"    "light"    
[84835] "changing"  "disk"      "unknown"   "light"     "unknown"   "light"    
[84841] "circle"    "fireball"  "circle"    "other"     "cross"     "sphere"   
[84847] "formation" "oval"      "disk"      "disk"      "unknown"   "sphere"   
[84853] "triangle"  "disk"      "unknown"   "sphere"    "unknown"   "formation"
[84859] "cigar"     "other"     "circle"    "sphere"    "triangle"  "light"    
[84865] "changing"  "fireball"  "other"     "light"     "cigar"     "unknown"  
[84871] "circle"    "circle"    "egg"       "light"     "light"     "circle"   
[84877] "light"     "light"     "flash"     "circle"    "sphere"    "light"    
[84883] "sphere"    "triangle"  "cigar"     "flash"     "light"     "unknown"  
[84889] NA          "light"     "sphere"    "sphere"    "other"     "unknown"  
[84895] "other"     "triangle"  "sphere"    "unknown"   "other"     "light"    
[84901] "light"     "unknown"   "triangle"  "triangle"  "unknown"   NA         
[84907] NA          "disk"      "other"     "other"     "light"     "disk"     
[84913] "circle"    "formation" "egg"       "changing"  "light"     "unknown"  
[84919] "other"     "flash"     "disk"      "disk"      "other"     "sphere"   
[84925] "unknown"   "disk"      "light"     "light"     "circle"    "triangle" 
[84931] "light"     "circle"    "other"     "cigar"     "triangle"  "unknown"  
[84937] "light"     "teardrop"  "light"     "disk"      "triangle"  "disk"     
[84943] "oval"      "fireball"  "unknown"   "fireball"  "diamond"   "sphere"   
[84949] "sphere"    "fireball"  "unknown"   "circle"    "circle"    "circle"   
[84955] "circle"    "light"     "light"     "fireball"  "fireball"  "circle"   
[84961] "light"     "oval"      "fireball"  "other"     "light"     "fireball" 
[84967] "oval"      "fireball"  "other"     "sphere"    "triangle"  "sphere"   
[84973] "fireball"  "fireball"  "light"     "triangle"  "cylinder"  "circle"   
[84979] "oval"      "unknown"   "circle"    "triangle"  "light"     "triangle" 
[84985] "triangle"  "circle"    "cone"      "unknown"   "light"     "fireball" 
[84991] "light"     "fireball"  "light"     "circle"    "triangle"  "fireball" 
[84997] "unknown"   "light"     "light"     "sphere"    "disk"      "disk"     
[85003] "fireball"  "triangle"  "egg"       "disk"      NA          "other"    
[85009] "unknown"   NA          "light"     NA          NA          "light"    
[85015] "cigar"     "other"     "cigar"     "disk"      "triangle"  "triangle" 
[85021] "light"     "fireball"  "light"     "egg"       "cylinder"  "triangle" 
[85027] "unknown"   "other"     "chevron"   "fireball"  "other"     "fireball" 
[85033] "sphere"    "circle"    "changing"  "teardrop"  "triangle"  "oval"     
[85039] "other"     "disk"      "teardrop"  "cylinder"  "fireball"  "circle"   
[85045] "triangle"  "other"     "disk"      "circle"    "egg"       "chevron"  
[85051] "sphere"    "sphere"    "circle"    "chevron"   "sphere"    "triangle" 
[85057] "sphere"    "light"     "sphere"    "unknown"   "disk"      "sphere"   
[85063] "oval"      NA          "sphere"    "teardrop"  "teardrop"  "light"    
[85069] "flash"     "egg"       "fireball"  "triangle"  "other"     "light"    
[85075] "light"     NA          "light"     "light"     "triangle"  "circle"   
[85081] "light"     "formation" "light"     "egg"       "circle"    "unknown"  
[85087] "teardrop"  "other"     "other"     "light"     "formation" "sphere"   
[85093] "sphere"    "changing"  "light"     "light"     "light"     "egg"      
[85099] "unknown"   "flash"     "light"     "triangle"  "triangle"  "disk"     
[85105] "light"     "fireball"  "disk"      "unknown"   "fireball"  "unknown"  
[85111] "light"     "light"     "fireball"  "changing"  "light"     "light"    
[85117] NA          "unknown"   "fireball"  "unknown"   "sphere"    "circle"   
[85123] "fireball"  NA          NA          "fireball"  "fireball"  "fireball" 
[85129] "light"     "triangle"  "oval"      "unknown"   "circle"    NA         
[85135] "light"     "unknown"   "light"     "other"     "light"     "light"    
[85141] "triangle"  "oval"      "disk"      "cigar"     "disk"      "disk"     
[85147] "unknown"   "triangle"  "disk"      "other"     "oval"      "triangle" 
[85153] "light"     "triangle"  "triangle"  NA          "circle"    "oval"     
[85159] "light"     "changing"  "light"     "other"     "diamond"   "light"    
[85165] "other"     "disk"      "disk"      "cigar"     "cigar"     "light"    
[85171] "circle"    "diamond"   "diamond"   "sphere"    "triangle"  "oval"     
[85177] "light"     "other"     "fireball"  "changing"  "fireball"  "circle"   
[85183] "sphere"    "light"     "oval"      "other"     "disk"      "other"    
[85189] "oval"      "light"     "disk"      "light"     "light"     "teardrop" 
[85195] "triangle"  "light"     "light"     "light"     "light"     "triangle" 
[85201] "light"     "light"     "unknown"   "light"     "light"     "sphere"   
[85207] "triangle"  "light"     "sphere"    "oval"      "oval"      "circle"   
[85213] "light"     "triangle"  "fireball"  "fireball"  "other"     "fireball" 
[85219] "light"     "formation" "sphere"    "light"     "disk"      "flash"    
[85225] "circle"    "triangle"  "light"     "disk"      "fireball"  "circle"   
[85231] "circle"    "other"     "rectangle" "formation" "cylinder"  "unknown"  
[85237] "cone"      "oval"      "sphere"    "cigar"     "diamond"   "changing" 
[85243] "circle"    "disk"      "cone"      "fireball"  NA          "circle"   
[85249] "diamond"   "light"     "fireball"  "changing"  "fireball"  "light"    
[85255] "unknown"   "fireball"  "fireball"  "rectangle" "fireball"  "sphere"   
[85261] "light"     "flash"     "other"     "light"     "changing"  "unknown"  
[85267] "flash"     "circle"    "light"     "changing"  "light"     "unknown"  
[85273] "cigar"     "cone"      "sphere"    "circle"    "light"     "triangle" 
[85279] "fireball"  "circle"    "light"     "fireball"  "flash"     "unknown"  
[85285] "fireball"  "oval"      "fireball"  "fireball"  "fireball"  "fireball" 
[85291] "light"     "fireball"  "fireball"  "light"     "formation" "sphere"   
[85297] "changing"  "other"     "light"     "disk"      "light"     "fireball" 
[85303] "unknown"   "light"     "sphere"    "light"     "circle"    "formation"
[85309] "light"     "light"     "oval"      "egg"       "disk"      "other"    
[85315] "circle"    "triangle"  "light"     "triangle"  "circle"    "fireball" 
[85321] NA          "flash"     "other"     NA          "disk"      "fireball" 
[85327] "triangle"  "triangle"  "circle"    "fireball"  "chevron"   "sphere"   
[85333] "disk"      "fireball"  "sphere"    "other"     "sphere"    "fireball" 
[85339] "disk"      "fireball"  "fireball"  "light"     "teardrop"  "other"    
[85345] "fireball"  "fireball"  "light"     "fireball"  "fireball"  "fireball" 
[85351] "fireball"  "circle"    "fireball"  "fireball"  "fireball"  "fireball" 
[85357] "oval"      "fireball"  "fireball"  "sphere"    "fireball"  "cigar"    
[85363] "other"     "fireball"  "light"     "sphere"    "fireball"  "light"    
[85369] "other"     "egg"       "flash"     "formation" "circle"    "circle"   
[85375] "circle"    "triangle"  "triangle"  "disk"      "light"     "unknown"  
[85381] "triangle"  "triangle"  "other"     "other"     "triangle"  "triangle" 
[85387] "triangle"  "oval"      "unknown"   "triangle"  "changing"  "disk"     
[85393] "sphere"    "changing"  "circle"    "chevron"   NA          "fireball" 
[85399] "egg"       "triangle"  "light"     "circle"    "light"     "triangle" 
[85405] "triangle"  "light"     "light"     "oval"      "light"     "unknown"  
[85411] "other"     "sphere"    "other"     "cigar"     "light"     "light"    
[85417] "unknown"   "flash"     "circle"    "other"     "other"     "triangle" 
[85423] "triangle"  "light"     "disk"      "light"     "sphere"    "unknown"  
[85429] NA          "formation" "other"     "circle"    "triangle"  "light"    
[85435] "formation" "unknown"   "light"     "light"     "triangle"  "flash"    
[85441] "light"     "chevron"   "light"     "light"     "unknown"   "triangle" 
[85447] "triangle"  "light"     "light"     "light"     "light"     "light"    
[85453] "chevron"   "triangle"  "light"     "light"     "sphere"    "light"    
[85459] "triangle"  "unknown"   "unknown"   "triangle"  "unknown"   "light"    
[85465] "light"     "sphere"    "circle"    "other"     "triangle"  "triangle" 
[85471] "light"     "triangle"  "flash"     "light"     "triangle"  "circle"   
[85477] "disk"      "flash"     "oval"      "light"     "light"     "light"    
[85483] "other"     "unknown"   "light"     "light"     "cylinder"  "light"    
[85489] "cigar"     "light"     "other"     "disk"      "cone"      "chevron"  
[85495] "light"     "sphere"    "light"     "unknown"   "diamond"   "cylinder" 
[85501] "disk"      "light"     "unknown"   "other"     "fireball"  "fireball" 
[85507] "circle"    "other"     "triangle"  "other"     "circle"    "sphere"   
[85513] "light"     "light"     "diamond"   "triangle"  "light"     "fireball" 
[85519] "changing"  "fireball"  "fireball"  "diamond"   "fireball"  "other"    
[85525] "sphere"    "light"     "other"     "circle"    "light"     "fireball" 
[85531] "formation" "cross"     "circle"    "cross"     "changing"  "fireball" 
[85537] "triangle"  "triangle"  "sphere"    "other"     "unknown"   "disk"     
[85543] "cigar"     "disk"      "triangle"  "fireball"  "light"     "fireball" 
[85549] "formation" "fireball"  "other"     "other"     "formation" "light"    
[85555] "sphere"    "light"     "fireball"  "fireball"  "sphere"    "triangle" 
[85561] "light"     "light"     "light"     "light"     "unknown"   "sphere"   
[85567] "disk"      "circle"    "oval"      "triangle"  "triangle"  "light"    
[85573] "disk"      NA          NA          NA          NA          NA         
[85579] "disk"      "disk"      "teardrop"  "other"     "flash"     "fireball" 
[85585] "disk"      "circle"    "fireball"  "light"     "fireball"  "sphere"   
[85591] "disk"      "other"     "fireball"  "light"     "triangle"  "unknown"  
[85597] "triangle"  "triangle"  "unknown"   "disk"      "cylinder"  "light"    
[85603] "light"     "flash"     "other"     "triangle"  "triangle"  "sphere"   
[85609] "formation" "light"     "diamond"   "sphere"    "triangle"  "sphere"   
[85615] "sphere"    "triangle"  "light"     "sphere"    "cigar"     "light"    
[85621] "sphere"    "fireball"  "triangle"  "circle"    "flash"     "changing" 
[85627] "cigar"     "disk"      "circle"    "triangle"  "circle"    "teardrop" 
[85633] "light"     "light"     "other"     "cigar"     "disk"      "light"    
[85639] "disk"      "circle"    "unknown"   "unknown"   "light"     "rectangle"
[85645] "rectangle" "chevron"   "oval"      "other"     "circle"    "other"    
[85651] "circle"    "triangle"  "flash"     "triangle"  "chevron"   "light"    
[85657] "changing"  "cigar"     "circle"    "circle"    "changing"  "light"    
[85663] "chevron"   "circle"    "rectangle" "oval"      "triangle"  "other"    
[85669] "rectangle" "circle"    "light"     "disk"      "light"     "triangle" 
[85675] "light"     "other"     "fireball"  "teardrop"  "circle"    "egg"      
[85681] "cylinder"  "light"     "other"     "light"     "light"     "triangle" 
[85687] "fireball"  "triangle"  "formation" "light"     "other"     "disk"     
[85693] "light"     "fireball"  "fireball"  "light"     "circle"    "sphere"   
[85699] "unknown"   "disk"      "other"     "fireball"  "other"     "other"    
[85705] "rectangle" "light"     "circle"    NA          "sphere"    "diamond"  
[85711] "unknown"   "light"     "light"     "circle"    "oval"      "circle"   
[85717] "triangle"  "sphere"    "sphere"    "cigar"     "cylinder"  "fireball" 
[85723] "light"     "sphere"    "light"     "unknown"   "disk"      "other"    
[85729] "light"     "formation" "cylinder"  "other"     "cross"     "light"    
[85735] "light"     "other"     "triangle"  "disk"      "fireball"  "rectangle"
[85741] "circle"    "circle"    "light"     "circle"    "rectangle" "fireball" 
[85747] "disk"      "disk"      "formation" "other"     "unknown"   "disk"     
[85753] "sphere"    "light"     "disk"      "unknown"   "fireball"  "light"    
[85759] "flash"     "triangle"  "triangle"  "circle"    "fireball"  "cigar"    
[85765] "oval"      "triangle"  "disk"      "disk"      "disk"      "egg"      
[85771] "light"     "light"     "circle"    "other"     "light"     "circle"   
[85777] "triangle"  "disk"      "flash"     "triangle"  NA          NA         
[85783] NA          NA          "triangle"  NA          NA          "other"    
[85789] "unknown"   "light"     "triangle"  "light"     "oval"      "disk"     
[85795] "flash"     "cylinder"  "teardrop"  "fireball"  "fireball"  "fireball" 
[85801] "fireball"  "rectangle" "unknown"   "light"     "sphere"    "disk"     
[85807] "light"     "circle"    "light"     "circle"    "fireball"  "cigar"    
[85813] "other"     "light"     "disk"      "oval"      "formation" "circle"   
[85819] "oval"      "light"     "circle"    "chevron"   "triangle"  "triangle" 
[85825] "unknown"   "disk"      "light"     "light"     "unknown"   "triangle" 
[85831] "other"     "disk"      "disk"      "diamond"   "other"     "light"    
[85837] "other"     "circle"    "light"     "sphere"    "light"     "changing" 
[85843] "changing"  "sphere"    "other"     "light"     "light"     "light"    
[85849] "oval"      "light"     "circle"    "oval"      "light"     "disk"     
[85855] "light"     "light"     "fireball"  "formation" "triangle"  "other"    
[85861] "unknown"   "triangle"  "egg"       "light"     "triangle"  "light"    
[85867] "oval"      "oval"      "circle"    "oval"      "unknown"   "circle"   
[85873] "light"     "sphere"    "changing"  "light"     "oval"      "diamond"  
[85879] "triangle"  "changing"  "fireball"  "rectangle" "light"     "fireball" 
[85885] "unknown"   "light"     "unknown"   "oval"      "unknown"   "triangle" 
[85891] "triangle"  "light"     "triangle"  "fireball"  "other"     "rectangle"
[85897] "oval"      "rectangle" "light"     "circle"    "sphere"    "formation"
[85903] "triangle"  "light"     "triangle"  "light"     "circle"    "triangle" 
[85909] "oval"      "triangle"  "other"     "triangle"  "sphere"    "triangle" 
[85915] "oval"      "sphere"    "circle"    "disk"      "sphere"    "unknown"  
[85921] "unknown"   "light"     "circle"    "changing"  "light"     "circle"   
[85927] "other"     "formation" "sphere"    "other"     "light"     "changing" 
[85933] "light"     "cigar"     "flash"     "changing"  "unknown"   "light"    
[85939] "flash"     "light"     "light"     "changing"  "circle"    "oval"     
[85945] "disk"      "flash"     "fireball"  "cylinder"  "rectangle" "other"    
[85951] "circle"    "oval"      "light"     "fireball"  "rectangle" "fireball" 
[85957] "circle"    "fireball"  "light"     "light"     "fireball"  "formation"
[85963] "fireball"  "unknown"   "fireball"  "light"     "sphere"    "unknown"  
[85969] "light"     "disk"      "circle"    "fireball"  "unknown"   "light"    
[85975] "unknown"   "light"     "light"     "triangle"  "unknown"   "light"    
[85981] "light"     "other"     "fireball"  "light"     "fireball"  "light"    
[85987] "disk"      "disk"      "sphere"    "sphere"    "light"     "unknown"  
[85993] "other"     "circle"    "other"     "triangle"  "fireball"  "sphere"   
[85999] "fireball"  "sphere"    "rectangle" "formation" "sphere"    "light"    
[86005] "circle"    "light"     "light"     "disk"      "disk"      "light"    
[86011] "light"     "formation" "light"     "sphere"    "unknown"   "triangle" 
[86017] "changing"  "fireball"  "light"     "unknown"   "disk"      "chevron"  
[86023] "disk"      "changing"  "formation" "circle"    "sphere"    "other"    
[86029] "fireball"  "oval"      "light"     "disk"      "other"     "other"    
[86035] "circle"    "formation" "triangle"  "fireball"  "fireball"  "other"    
[86041] "fireball"  "triangle"  "circle"    "chevron"   "unknown"   "unknown"  
[86047] "light"     "chevron"   "cigar"     "fireball"  "fireball"  "fireball" 
[86053] "fireball"  "flash"     "flash"     "triangle"  "light"     "formation"
[86059] "circle"    "oval"      "fireball"  "fireball"  "other"     "teardrop" 
[86065] "other"     "changing"  "triangle"  "light"     "chevron"   "triangle" 
[86071] "oval"      "triangle"  "unknown"   "disk"      "sphere"    "sphere"   
[86077] "cylinder"  "light"     "light"     "light"     "light"     "circle"   
[86083] "unknown"   "light"     "light"     "chevron"   "light"     "triangle" 
[86089] "teardrop"  "light"     "cylinder"  "sphere"    "light"     "light"    
[86095] "flash"     "light"     "light"     "formation" "sphere"    "light"    
[86101] "light"     "chevron"   "flash"     "triangle"  "other"     "triangle" 
[86107] "formation" "circle"    "other"     "light"     "changing"  "fireball" 
[86113] "triangle"  "triangle"  "disk"      NA          "light"     "triangle" 
[86119] "triangle"  "unknown"   "sphere"    NA          "other"     "unknown"  
[86125] "triangle"  "circle"    "cigar"     "disk"      "light"     "circle"   
[86131] "circle"    "diamond"   "oval"      "light"     "formation" "diamond"  
[86137] "light"     "changing"  "oval"      "disk"      "changing"  "sphere"   
[86143] "triangle"  "light"     "light"     "other"     "fireball"  "unknown"  
[86149] "triangle"  "other"     "disk"      "light"     "sphere"    "light"    
[86155] "circle"    "circle"    "light"     "circle"    "light"     "light"    
[86161] "light"     "formation" "disk"      "triangle"  "sphere"    "unknown"  
[86167] "cigar"     "oval"      "unknown"   "other"     "fireball"  "light"    
[86173] "light"     "disk"      "other"     "disk"      "light"     "oval"     
[86179] "oval"      "fireball"  "unknown"   "light"     "disk"      "other"    
[86185] "light"     "light"     "unknown"   "sphere"    "cigar"     "egg"      
[86191] "triangle"  "formation" "light"     "triangle"  "formation" "oval"     
[86197] "light"     "triangle"  "diamond"   "light"     NA          "unknown"  
[86203] "unknown"   "formation" "sphere"    "light"     "rectangle" "triangle" 
[86209] "fireball"  "circle"    "light"     "circle"    "diamond"   "light"    
[86215] "circle"    "unknown"   "circle"    NA          "sphere"    "light"    
[86221] "light"     NA          "oval"      "fireball"  "fireball"  "light"    
[86227] "cross"     "diamond"   "disk"      "light"     "teardrop"  "light"    
[86233] "circle"    "fireball"  "formation" "unknown"   "chevron"   "unknown"  
[86239] "flash"     "circle"    "circle"    "light"     "sphere"    "diamond"  
[86245] "chevron"   "circle"    "circle"    "light"     "light"     "changing" 
[86251] "fireball"  "circle"    "oval"      "oval"      "unknown"   "light"    
[86257] "oval"      "disk"      "triangle"  "unknown"   "disk"      "teardrop" 
[86263] "cigar"     "disk"      "other"     "triangle"  "sphere"    "triangle" 
[86269] "circle"    "other"     "formation" "light"     "fireball"  "disk"     
[86275] "disk"      "circle"    "light"     "other"     "triangle"  "circle"   
[86281] "light"     "triangle"  "disk"      "cigar"     "disk"      "light"    
[86287] "triangle"  "fireball"  "light"     "light"     "teardrop"  "sphere"   
[86293] NA          NA          "sphere"    "light"     "light"     "light"    
[86299] "unknown"   "triangle"  "light"     "sphere"    "light"     "oval"     
[86305] "sphere"    "circle"    "light"     "triangle"  "light"     "light"    
[86311] "disk"      "light"     "triangle"  "triangle"  "teardrop"  "light"    
[86317] "circle"    "light"     "light"     "diamond"   "circle"    "triangle" 
[86323] "light"     "unknown"   "disk"      "light"     "light"     "circle"   
[86329] "unknown"   "circle"    "other"     "cigar"     "oval"      NA         
[86335] NA          "other"     "cigar"     "disk"      "other"     "sphere"   
[86341] "circle"    "unknown"   "unknown"   "circle"    "oval"      "rectangle"
[86347] "light"     "triangle"  "unknown"   "triangle"  "light"     "triangle" 
[86353] "light"     "light"     "fireball"  "unknown"   "flash"     "oval"     
[86359] "light"     "flash"     "sphere"    "triangle"  "unknown"   "light"    
[86365] "changing"  "light"     "triangle"  "sphere"    "triangle"  "disk"     
[86371] NA          NA          "circle"    "light"     "sphere"    "oval"     
[86377] "light"     "light"     "circle"    "fireball"  "disk"      "cigar"    
[86383] "light"     "unknown"   "chevron"   "cylinder"  "cylinder"  "triangle" 
[86389] "sphere"    "other"     "light"     "sphere"    "fireball"  "circle"   
[86395] "light"     "sphere"    "fireball"  "circle"    "circle"    "light"    
[86401] "circle"    "cylinder"  "cigar"     "unknown"   "unknown"   "fireball" 
[86407] "fireball"  "egg"       "flash"     "sphere"    "sphere"    "other"    
[86413] "other"     "fireball"  "triangle"  "changing"  "sphere"    "unknown"  
[86419] NA          "fireball"  "circle"    "light"     "cigar"     "light"    
[86425] "unknown"   "flash"     "flash"     "flash"     "circle"    "unknown"  
[86431] "other"     "rectangle" NA          "light"     "cigar"     "disk"     
[86437] "unknown"   "disk"      "sphere"    "unknown"   "sphere"    "fireball" 
[86443] "light"     NA          "fireball"  "triangle"  "fireball"  "fireball" 
[86449] "other"     "disk"      "flash"     "circle"    "other"     "disk"     
[86455] "circle"    "circle"    NA          "fireball"  NA          NA         
[86461] "triangle"  "triangle"  "fireball"  "light"     "unknown"   "light"    
[86467] "oval"      "triangle"  "triangle"  "light"     "disk"      "other"    
[86473] "disk"      "disk"      "other"     "triangle"  "triangle"  "disk"     
[86479] "fireball"  "other"     "circle"    "cigar"     "unknown"   "fireball" 
[86485] "rectangle" "fireball"  "other"     "disk"      "formation" "fireball" 
[86491] "other"     "disk"      "triangle"  "circle"    "light"     "light"    
[86497] "light"     "fireball"  "fireball"  "light"     "fireball"  "triangle" 
[86503] "other"     "triangle"  "triangle"  "formation" "triangle"  "triangle" 
[86509] "circle"    "unknown"   "other"     "sphere"    "cylinder"  "fireball" 
[86515] "egg"       "rectangle" "teardrop"  "oval"      "disk"      "light"    
[86521] "light"     "oval"      "light"     "unknown"   NA          "disk"     
[86527] "disk"      "triangle"  "light"     "formation" "light"     "fireball" 
[86533] "chevron"   "changing"  "fireball"  "triangle"  "other"     "disk"     
[86539] "other"     "light"     "formation" "oval"      "cigar"     "circle"   
[86545] "light"     "light"     "other"     "other"     "flash"     "light"    
[86551] "light"     "rectangle" "triangle"  "other"     "diamond"   "triangle" 
[86557] "unknown"   "light"     "chevron"   "unknown"   "flash"     "formation"
[86563] "rectangle" "circle"    "rectangle" "changing"  "triangle"  "sphere"   
[86569] "other"     "circle"    "light"     "light"     "light"     "light"    
[86575] "light"     "diamond"   "oval"      "light"     "circle"    "other"    
[86581] "egg"       "light"     "other"     "sphere"    "light"     "light"    
[86587] "triangle"  "light"     "other"     "unknown"   "circle"    "light"    
[86593] "oval"      "light"     "sphere"    "oval"      "light"     "chevron"  
[86599] "light"     "light"     "unknown"   "light"     "circle"    "changing" 
[86605] "chevron"   "light"     "light"     "triangle"  "circle"    "circle"   
[86611] "oval"      "triangle"  "other"     "circle"    "sphere"    "oval"     
[86617] "oval"      "other"     "other"     "light"     "circle"    "circle"   
[86623] "triangle"  "flash"     "circle"    "fireball"  "other"     "light"    
[86629] "rectangle" "rectangle" "sphere"    "unknown"   "oval"      "circle"   
[86635] "other"     "unknown"   "disk"      "circle"    "light"     "triangle" 
[86641] "chevron"   "fireball"  "fireball"  "circle"    "fireball"  "fireball" 
[86647] "light"     "circle"    "light"     "flash"     "flash"     "light"    
[86653] "triangle"  "other"     "fireball"  "light"     "fireball"  "light"    
[86659] "circle"    "fireball"  "oval"      "unknown"   "teardrop"  "other"    
[86665] "fireball"  "fireball"  "sphere"    "light"     "cylinder"  "light"    
[86671] "circle"    "light"     "circle"    "light"     "circle"    "unknown"  
[86677] "formation" "fireball"  "triangle"  "oval"      "fireball"  "sphere"   
[86683] "formation" "circle"    "formation" "circle"    "unknown"   "light"    
[86689] "changing"  "circle"    "light"     "fireball"  "triangle"  "sphere"   
[86695] "formation" "circle"    "diamond"   "other"     "sphere"    "sphere"   
[86701] "circle"    "fireball"  "sphere"    "chevron"   "fireball"  "cylinder" 
[86707] "fireball"  "formation" "light"     "oval"      "oval"      "triangle" 
[86713] "light"     "disk"      "triangle"  "disk"      "chevron"   NA         
[86719] NA          NA          NA          NA          "light"     "formation"
[86725] "fireball"  "fireball"  "fireball"  "fireball"  "other"     "unknown"  
[86731] "sphere"    "fireball"  "rectangle" "triangle"  "fireball"  "sphere"   
[86737] "other"     "light"     "circle"    "fireball"  "circle"    "other"    
[86743] "other"     "cigar"     "fireball"  "cone"      "disk"      "unknown"  
[86749] "formation" "triangle"  "light"     "teardrop"  "other"     "light"    
[86755] "triangle"  "light"     "light"     "light"     "triangle"  "triangle" 
[86761] "oval"      "triangle"  "cigar"     "light"     "disk"      "flash"    
[86767] "sphere"    "unknown"   "changing"  "triangle"  "circle"    "circle"   
[86773] "light"     "triangle"  "changing"  "changing"  "light"     "triangle" 
[86779] "unknown"   "sphere"    "egg"       "oval"      "light"     "circle"   
[86785] "chevron"   "light"     "egg"       "formation" "unknown"   "unknown"  
[86791] "fireball"  "fireball"  "other"     "unknown"   "circle"    "flash"    
[86797] "light"     "cigar"     "sphere"    "oval"      "other"     "fireball" 
[86803] "other"     "other"     "triangle"  "diamond"   "light"     "light"    
[86809] "fireball"  "light"     "disk"      "light"     "diamond"   "sphere"   
[86815] "light"     "light"     "light"     "circle"    "circle"    "light"    
[86821] "other"     "triangle"  "triangle"  "formation" "other"     "unknown"  
[86827] "light"     "light"     "other"     "triangle"  "changing"  "circle"   
[86833] "light"     "triangle"  "light"     "rectangle" "flash"     "flash"    
[86839] "unknown"   "other"     "circle"    "cone"      "triangle"  "formation"
[86845] "light"     "triangle"  "light"     "other"     "formation" "changing" 
[86851] "formation" "triangle"  "cylinder"  "unknown"   "changing"  "circle"   
[86857] "sphere"    "formation" "light"     "sphere"    "light"     "circle"   
[86863] "triangle"  NA          "oval"      "unknown"   "unknown"   "triangle" 
[86869] "chevron"   "circle"    "rectangle" "other"     "other"     "fireball" 
[86875] "unknown"   "other"     "light"     "other"     "triangle"  "formation"
[86881] "other"     "sphere"    "fireball"  "light"     "fireball"  "formation"
[86887] "sphere"    "fireball"  "light"     "fireball"  "circle"    "fireball" 
[86893] "circle"    "other"     "unknown"   "triangle"  "light"     "formation"
[86899] "other"     "fireball"  "circle"    "light"     "sphere"    "other"    
[86905] "light"     "oval"      "sphere"    "fireball"  "disk"      "disk"     
[86911] "triangle"  "circle"    "disk"      "other"     "other"     "disk"     
[86917] "fireball"  "circle"    "circle"    "light"     "circle"    "circle"   
[86923] "circle"    "circle"    "flash"     "circle"    "unknown"   "fireball" 
[86929] "light"     "light"     "changing"  "fireball"  "fireball"  "other"    
[86935] "circle"    "light"     NA          "light"     "flash"     "unknown"  
[86941] "cigar"     "circle"    "oval"      "diamond"   "rectangle" "disk"     
[86947] "disk"      "disk"      "cigar"     "triangle"  "oval"      "sphere"   
[86953] "cigar"     "oval"      "egg"       "sphere"    "rectangle" "triangle" 
[86959] "unknown"   "disk"      "disk"      NA          "triangle"  "disk"     
[86965] "light"     NA          NA          "light"     "circle"    "rectangle"
[86971] "light"     "light"     "light"     "sphere"    "triangle"  "sphere"   
[86977] "circle"    "sphere"    "disk"      "triangle"  "triangle"  "other"    
[86983] "triangle"  "sphere"    "triangle"  NA          "fireball"  "sphere"   
[86989] "circle"    "circle"    "triangle"  "light"     "other"     "fireball" 
[86995] "circle"    "formation" "changing"  "light"     "light"     "sphere"   
[87001] "sphere"    "formation" "triangle"  "changing"  "fireball"  "other"    
[87007] "light"     "triangle"  "disk"      "disk"      "changing"  "sphere"   
[87013] "formation" "sphere"    "circle"    "sphere"    "sphere"    NA         
[87019] "oval"      "light"     "fireball"  "circle"    "fireball"  "light"    
[87025] "unknown"   "disk"      "light"     "oval"      "circle"    "oval"     
[87031] "disk"      "oval"      "other"     "diamond"   "sphere"    "fireball" 
[87037] "unknown"   "triangle"  "triangle"  "light"     "cylinder"  "other"    
[87043] "unknown"   "oval"      "disk"      "diamond"   "light"     "light"    
[87049] "circle"    "light"     "fireball"  "triangle"  "triangle"  "rectangle"
[87055] "cigar"     "disk"      "light"     "cigar"     "rectangle" "other"    
[87061] "disk"      "fireball"  "light"     "disk"      "light"     "sphere"   
[87067] "flash"     "sphere"    "light"     NA          "triangle"  "light"    
[87073] "circle"    "cigar"     "light"     "light"     "sphere"    "triangle" 
[87079] "light"     "unknown"   "circle"    "light"     "light"     "light"    
[87085] "other"     "circle"    "light"     "light"     "light"     "light"    
[87091] "triangle"  "unknown"   "light"     "circle"    "light"     "sphere"   
[87097] "formation" "light"     "unknown"   "circle"    "light"     "light"    
[87103] "light"     "light"     "circle"    "triangle"  "changing"  "circle"   
[87109] "formation" "light"     "light"     NA          "light"     "triangle" 
[87115] "light"     "disk"      "disk"      "disk"      "unknown"   "sphere"   
[87121] "diamond"   "triangle"  "teardrop"  "flash"     "triangle"  "light"    
[87127] "changing"  "circle"    "unknown"   "sphere"    "cigar"     "other"    
[87133] "other"     "sphere"    "light"     "unknown"   "other"     "triangle" 
[87139] "formation" "triangle"  "triangle"  "diamond"   "other"     "other"    
[87145] "other"     "oval"      "light"     "light"     "disk"      "other"    
[87151] "circle"    "disk"      "triangle"  "light"     "cigar"     "flash"    
[87157] "triangle"  "triangle"  "sphere"    "changing"  "disk"      "triangle" 
[87163] "diamond"   "light"     "sphere"    "light"     "disk"      "light"    
[87169] "triangle"  "triangle"  "light"     "light"     "unknown"   "triangle" 
[87175] "diamond"   "chevron"   "circle"    "circle"    "cigar"     "sphere"   
[87181] "cylinder"  "oval"      "triangle"  "other"     "fireball"  "unknown"  
[87187] "sphere"    "other"     "chevron"   "diamond"   "unknown"   "light"    
[87193] "triangle"  "fireball"  "light"     "fireball"  "formation" "circle"   
[87199] "fireball"  "fireball"  "circle"    "light"     "cigar"     "circle"   
[87205] "circle"    "triangle"  "cylinder"  "oval"      "triangle"  "sphere"   
[87211] "cone"      "other"     "fireball"  "triangle"  "fireball"  "flash"    
[87217] NA          "triangle"  "formation" "other"     "changing"  "teardrop" 
[87223] "unknown"   "cylinder"  "oval"      "light"     "sphere"    "unknown"  
[87229] "triangle"  "triangle"  "triangle"  "unknown"   "fireball"  "cylinder" 
[87235] "oval"      NA          "disk"      "sphere"    "triangle"  "sphere"   
[87241] "light"     "disk"      "disk"      NA          "light"     "formation"
[87247] "cigar"     "sphere"    "other"     "fireball"  "sphere"    "circle"   
[87253] "other"     "chevron"   "light"     "cylinder"  "disk"      "fireball" 
[87259] "other"     "fireball"  "changing"  "circle"    "cigar"     "unknown"  
[87265] "rectangle" "unknown"   "changing"  "triangle"  "cross"     "fireball" 
[87271] "teardrop"  "diamond"   "diamond"   "light"     "circle"    "oval"     
[87277] "diamond"   "changing"  "teardrop"  "unknown"   "fireball"  "light"    
[87283] "unknown"   NA          "other"     "other"     "triangle"  "cigar"    
[87289] "disk"      "disk"      "light"     "light"     "triangle"  "formation"
[87295] "triangle"  "light"     "formation" "cylinder"  "light"     "light"    
[87301] "unknown"   "light"     "light"     "light"     "unknown"   "chevron"  
[87307] "triangle"  "teardrop"  "fireball"  "light"     "fireball"  "circle"   
[87313] "light"     "other"     "oval"      "light"     "triangle"  "light"    
[87319] "triangle"  "oval"      "triangle"  "light"     "sphere"    "triangle" 
[87325] "sphere"    "changing"  "unknown"   "disk"      "light"     "light"    
[87331] "fireball"  "disk"      "oval"      "unknown"   "fireball"  "other"    
[87337] "sphere"    "circle"    "cylinder"  NA          "light"     "sphere"   
[87343] "disk"      "oval"      "sphere"    "circle"    "oval"      "cross"    
[87349] "formation" "circle"    "circle"    "light"     "triangle"  "formation"
[87355] "triangle"  "unknown"   "other"     "triangle"  "light"     "other"    
[87361] "other"     "light"     "oval"      "unknown"   "sphere"    "unknown"  
[87367] "flash"     "cigar"     "cigar"     "light"     "circle"    "light"    
[87373] "triangle"  "light"     "light"     NA          "changing"  "light"    
[87379] "other"     "light"     "light"     "fireball"  "oval"      NA         
[87385] "changing"  "triangle"  "other"     "triangle"  "triangle"  "unknown"  
[87391] "triangle"  "other"     "sphere"    "circle"    "light"     "other"    
[87397] "other"     "light"     "triangle"  "circle"    "triangle"  "sphere"   
[87403] "diamond"   "circle"    "fireball"  "other"     "circle"    "light"    
[87409] "teardrop"  "teardrop"  "changing"  "circle"    "sphere"    "circle"   
[87415] "rectangle" "triangle"  "cylinder"  "light"     "egg"       "other"    
[87421] "fireball"  "fireball"  "light"     "fireball"  "circle"    "sphere"   
[87427] "circle"    "circle"    "sphere"    "light"     "light"     "unknown"  
[87433] "circle"    "oval"      "fireball"  "sphere"    "teardrop"  "triangle" 
[87439] "changing"  "other"     "cylinder"  "oval"      "fireball"  "sphere"   
[87445] "other"     "light"     "circle"    "fireball"  "triangle"  "triangle" 
[87451] "sphere"    "unknown"   "circle"    "fireball"  "unknown"   NA         
[87457] "triangle"  "circle"    "triangle"  "triangle"  "sphere"    "sphere"   
[87463] "light"     "circle"    "light"     "changing"  "sphere"    "light"    
[87469] "sphere"    "other"     "unknown"   "circle"    "oval"      NA         
[87475] "sphere"    "circle"    "cigar"     "rectangle" "disk"      "disk"     
[87481] NA          "cigar"     "light"     NA          "triangle"  "triangle" 
[87487] "cigar"     "light"     "cylinder"  "triangle"  "light"     "light"    
[87493] "other"     "light"     "cylinder"  NA          "light"     "triangle" 
[87499] "light"     "triangle"  "light"     "triangle"  "fireball"  "light"    
[87505] "circle"    "light"     "light"     "oval"      "triangle"  "sphere"   
[87511] "light"     "rectangle" "light"     "circle"    "other"     "light"    
[87517] "light"     "sphere"    "diamond"   "diamond"   "triangle"  "light"    
[87523] "light"     "light"     "other"     "sphere"    "fireball"  "oval"     
[87529] "formation" "disk"      "circle"    "fireball"  "fireball"  "teardrop" 
[87535] "fireball"  "flash"     "light"     "light"     "oval"      "oval"     
[87541] "cylinder"  "light"     "light"     "teardrop"  "triangle"  "rectangle"
[87547] "fireball"  "unknown"   "cigar"     "unknown"   "unknown"   "light"    
[87553] "other"     "oval"      "light"     "light"     "light"     "unknown"  
[87559] "light"     "light"     "triangle"  "light"     "fireball"  "teardrop" 
[87565] "light"     "light"     "light"     "circle"    "light"     NA         
[87571] "fireball"  "circle"    "cone"      "cigar"     "triangle"  NA         
[87577] "light"     NA          "cylinder"  "teardrop"  "light"     "light"    
[87583] "disk"      "triangle"  "triangle"  "oval"      "cone"      "sphere"   
[87589] "oval"      "light"     "disk"      "formation" "triangle"  "triangle" 
[87595] "rectangle" "disk"      "flash"     "light"     "diamond"   "triangle" 
[87601] "triangle"  "triangle"  "formation" "diamond"   "circle"    "triangle" 
[87607] "circle"    "flash"     "light"     "light"     "disk"      "circle"   
[87613] "fireball"  "circle"    NA          "light"     "other"     "circle"   
[87619] "disk"      "triangle"  "triangle"  "disk"      "cylinder"  "light"    
[87625] "light"     "light"     "cigar"     "sphere"    "circle"    "fireball" 
[87631] "fireball"  "fireball"  "unknown"   "unknown"   "fireball"  "triangle" 
[87637] "light"     "circle"    "circle"    "circle"    "unknown"   "other"    
[87643] "unknown"   "light"     "circle"    "sphere"    "light"     NA         
[87649] "triangle"  "light"     NA          "circle"    "disk"      "unknown"  
[87655] "oval"      "light"     "light"     "fireball"  "light"     "light"    
[87661] "egg"       "disk"      "flash"     "fireball"  "light"     "fireball" 
[87667] "triangle"  "formation" "circle"    "light"     "other"     "light"    
[87673] "sphere"    "chevron"   "formation" "oval"      "fireball"  "other"    
[87679] "sphere"    "triangle"  "circle"    "light"     "rectangle" "circle"   
[87685] "flash"     "disk"      "other"     "light"     "unknown"   "flash"    
[87691] "flash"     "triangle"  "diamond"   "cylinder"  "sphere"    "light"    
[87697] "light"     "diamond"   "fireball"  "light"     "cross"     "circle"   
[87703] "light"     "fireball"  "circle"    "unknown"   "flash"     "fireball" 
[87709] "disk"      "oval"      "disk"      "cylinder"  "circle"    "circle"   
[87715] "disk"      "sphere"    "triangle"  "light"     "disk"      "circle"   
[87721] "disk"      "circle"    "triangle"  "triangle"  "unknown"   "circle"   
[87727] "fireball"  "disk"      "triangle"  NA          NA          "triangle" 
[87733] "sphere"    "fireball"  "circle"    "fireball"  "triangle"  "light"    
[87739] "circle"    "formation" "circle"    "sphere"    "light"     "rectangle"
[87745] "disk"      "cigar"     "disk"      "circle"    NA          "light"    
[87751] "light"     "formation" "light"     "fireball"  "light"     "triangle" 
[87757] "light"     "triangle"  "light"     "light"     "light"     "triangle" 
[87763] "changing"  "unknown"   "sphere"    "light"     "light"     "rectangle"
[87769] "fireball"  "light"     "unknown"   "light"     "flash"     "other"    
[87775] "changing"  "disk"      "cross"     "light"     "other"     NA         
[87781] "triangle"  "disk"      NA          "other"     "disk"      "cross"    
[87787] "oval"      "light"     "triangle"  "light"     "rectangle" "circle"   
[87793] "circle"    "disk"      "formation" "fireball"  "unknown"   "unknown"  
[87799] "oval"      "sphere"    NA          "other"     "light"     "fireball" 
[87805] "fireball"  "light"     "light"     "disk"      "light"     NA         
[87811] "light"     "light"     "fireball"  "light"     "cigar"     "triangle" 
[87817] "light"     "flash"     "light"     "light"     "triangle"  "formation"
[87823] "triangle"  "fireball"  "light"     "light"     "rectangle" "sphere"   
[87829] "cigar"     "circle"    "disk"      "light"     "changing"  "circle"   
[87835] "formation" "changing"  "unknown"   "circle"    "light"     "changing" 
[87841] "circle"    "circle"    "formation" "unknown"   "light"     "circle"   
[87847] "triangle"  "other"     "oval"      "other"     "sphere"    "teardrop" 
[87853] "light"     "fireball"  "unknown"   "fireball"  "fireball"  "circle"   
[87859] "circle"    "teardrop"  "sphere"    "circle"    "light"     "light"    
[87865] "light"     "changing"  "circle"    "unknown"   "oval"      "triangle" 
[87871] "rectangle" "oval"      "sphere"    "light"     "fireball"  "light"    
[87877] "light"     "triangle"  "light"     "triangle"  "unknown"   "fireball" 
[87883] "egg"       "sphere"    "formation" "circle"    "fireball"  "circle"   
[87889] "light"     "unknown"   "light"     "light"     "oval"      "circle"   
[87895] "light"     "light"     "unknown"   "triangle"  "fireball"  "light"    
[87901] "sphere"    "triangle"  "disk"      "oval"      "oval"      "formation"
[87907] "light"     "sphere"    "diamond"   "other"     "triangle"  "unknown"  
[87913] "chevron"   "oval"      "diamond"   "sphere"    "other"     "sphere"   
[87919] "cigar"     "disk"      "triangle"  "unknown"   "circle"    "triangle" 
[87925] "circle"    "circle"    "circle"    "changing"  "fireball"  "circle"   
[87931] "triangle"  "unknown"   "flash"     "disk"      "unknown"   "sphere"   
[87937] "oval"      "circle"    "circle"    "changing"  "disk"      "oval"     
[87943] "disk"      "disk"      "disk"      "sphere"    "circle"    "triangle" 
[87949] "light"     "other"     "light"     "cylinder"  "light"     "chevron"  
[87955] "triangle"  "sphere"    "other"     "other"     "unknown"   "disk"     
[87961] "other"     "oval"      "unknown"   "flash"     "light"     "fireball" 
[87967] "cigar"     "unknown"   "light"     "triangle"  "light"     "circle"   
[87973] "fireball"  "light"     "fireball"  "light"     "triangle"  "fireball" 
[87979] "fireball"  "cigar"     "cigar"     "cigar"     "circle"    "changing" 
[87985] "light"     "unknown"   "light"     "light"     "disk"      "disk"     
[87991] "light"     "light"     "triangle"  "unknown"   "circle"    "cylinder" 
[87997] "changing"  "teardrop"  "triangle"  "fireball"  "cigar"     "oval"     
[88003] "oval"      "other"     "triangle"  "circle"    "triangle"  "formation"
[88009] "light"     "triangle"  "unknown"   "other"     "circle"    "disk"     
[88015] "disk"      "unknown"   "flash"     "unknown"   "other"     "light"    
[88021] "chevron"   "cigar"     "unknown"   "light"     "flash"     "triangle" 
[88027] "cigar"     "light"     "triangle"  "light"     "triangle"  "sphere"   
[88033] "other"     "sphere"    "triangle"  "disk"      "teardrop"  "triangle" 
[88039] "unknown"   "other"     "oval"      "light"     "diamond"   "unknown"  
[88045] "triangle"  "disk"      "other"     "unknown"   "other"     "oval"     
[88051] "light"     "light"     "cigar"     "triangle"  "unknown"   "light"    
[88057] "light"     "light"     "other"     "fireball"  "sphere"    "triangle" 
[88063] "unknown"   "unknown"   "oval"      "formation" "cylinder"  "light"    
[88069] "light"     "light"     "triangle"  "light"     "circle"    "light"    
[88075] "light"     "unknown"   "light"     "light"     "unknown"   "changing" 
[88081] "formation" "triangle"  "circle"    "light"     "cigar"     "triangle" 
[88087] "light"     "oval"      "disk"      "circle"    "sphere"    "fireball" 
[88093] "light"     "formation" "oval"      "flash"     "light"     "flash"    
[88099] "triangle"  "disk"      "fireball"  "light"     "triangle"  "disk"     
[88105] "unknown"   "light"     "light"     "sphere"    "light"     "triangle" 
[88111] "light"     "triangle"  "triangle"  "unknown"   "circle"    "circle"   
[88117] "disk"      "unknown"   "sphere"    "flash"     "circle"    "teardrop" 
[88123] "disk"      "fireball"  "light"     "triangle"  NA          "formation"
[88129] "sphere"    "fireball"  "unknown"   "triangle"  "fireball"  "other"    
[88135] "cylinder"  "unknown"   "light"     "egg"       "triangle"  "disk"     
[88141] "changing"  "flash"     "fireball"  "light"     "fireball"  "cylinder" 
[88147] "unknown"   "unknown"   "circle"    "disk"      "unknown"   "other"    
[88153] "other"     "disk"      "light"     "triangle"  "other"     "triangle" 
[88159] "cigar"     "light"     "disk"      "light"     "circle"    NA         
[88165] "diamond"   "other"     "fireball"  "fireball"  "light"     "unknown"  
[88171] "unknown"   "light"     "fireball"  "disk"      "other"     "fireball" 
[88177] "cigar"     "other"     "changing"  "cigar"     "sphere"    "oval"     
[88183] "cylinder"  "light"     "teardrop"  "cone"      "formation" "other"    
[88189] "formation" "light"     "unknown"   "light"     NA          "circle"   
[88195] "triangle"  "triangle"  "light"     "fireball"  "light"     "triangle" 
[88201] "flash"     "oval"      "triangle"  "formation" "formation" "triangle" 
[88207] "light"     "triangle"  "rectangle" "circle"    "light"     "flash"    
[88213] "light"     "circle"    "other"     "oval"      "unknown"   "light"    
[88219] "flash"     "formation" "triangle"  "triangle"  "other"     "light"    
[88225] "changing"  "fireball"  "light"     "cigar"     "formation" "egg"      
[88231] "circle"    "sphere"    "light"     "disk"      "circle"    "circle"   
[88237] "triangle"  "disk"      "formation" "unknown"   "sphere"    NA         
[88243] "triangle"  "formation" "unknown"   "light"     "diamond"   "other"    
[88249] "other"     "oval"      "other"     "light"     "cigar"     "disk"     
[88255] "light"     "changing"  "unknown"   "sphere"    "oval"      "diamond"  
[88261] "cylinder"  "cylinder"  "light"     "light"     "fireball"  "light"    
[88267] "light"     "sphere"    "oval"      "formation" "triangle"  "triangle" 
[88273] "rectangle" "unknown"   "light"     "egg"       "oval"      "diamond"  
[88279] "rectangle" "light"     "triangle"  "triangle"  "fireball"  "triangle" 
[88285] "circle"    "circle"    "light"     "fireball"  "sphere"    "other"    
[88291] "light"     "unknown"   "light"     "light"     "sphere"    "light"    
[88297] "light"     "light"     "light"     "triangle"  "rectangle" "cigar"    
[88303] "light"     "triangle"  "light"     "light"     "circle"    "light"    
[88309] "light"     "circle"    "light"     "triangle"  NA          "light"    
[88315] "disk"      NA          "diamond"   "triangle"  "fireball"  "fireball" 
[88321] "formation" "circle"    "other"     "light"     "fireball"  "light"    
[88327] "sphere"    "sphere"    "cylinder"  "fireball"  "triangle"  "sphere"   
[88333] "fireball"  "fireball"  "triangle"  "sphere"    "fireball"  "light"    
[88339] "fireball"  "fireball"  "circle"    "disk"      "fireball"  "light"    
[88345] "disk"      "circle"    "oval"      "cigar"     "light"     "light"    
[88351] "light"     "fireball"  "fireball"  "light"     "fireball"  "circle"   
[88357] "light"     "sphere"    "fireball"  "unknown"   "circle"    "circle"   
[88363] "circle"    NA          "light"     "circle"    "light"     "circle"   
[88369] "circle"    "light"     "fireball"  "circle"    "unknown"   "oval"     
[88375] "cigar"     "egg"       "triangle"  "changing"  "other"     "cigar"    
[88381] NA          "sphere"    "oval"      "fireball"  "unknown"   "fireball" 
[88387] "light"     "other"     "light"     "light"     "formation" "light"    
[88393] "formation" "triangle"  "triangle"  "unknown"   "cylinder"  "rectangle"
[88399] "rectangle" "sphere"    "cigar"     "flash"     "formation" "cigar"    
[88405] "unknown"   "oval"      "oval"      "flash"     "unknown"   "light"    
[88411] "light"     "diamond"   "formation" "light"     "disk"      "light"    
[88417] "sphere"    "disk"      "other"     "disk"      "disk"      "rectangle"
[88423] "circle"    "oval"      "disk"      "fireball"  "disk"      "circle"   
[88429] "circle"    "circle"    "triangle"  "triangle"  "triangle"  "other"    
[88435] "flash"     "changing"  "other"     "light"     "disk"      "circle"   
[88441] "sphere"    "light"     "disk"      "light"     "oval"      "oval"     
[88447] "light"     "sphere"    "changing"  "triangle"  "changing"  "oval"     
[88453] "disk"      "triangle"  "formation" "triangle"  "other"     "light"    
[88459] "light"     "oval"      "other"     "cigar"     "circle"    "oval"     
[88465] "disk"      "light"     "fireball"  "oval"      "light"     "triangle" 
[88471] "other"     "light"     "changing"  "light"     "oval"      "light"    
[88477] "circle"    "unknown"   "chevron"   "oval"      "triangle"  "sphere"   
[88483] "cylinder"  "light"     "circle"    "formation" "circle"    "triangle" 
[88489] "light"     "oval"      "light"     "formation" "rectangle" "unknown"  
[88495] "disk"      "triangle"  "light"     "light"     "light"     "light"    
[88501] "light"     "formation" "light"     "light"     "formation" "sphere"   
[88507] "light"     "light"     NA          "other"     "formation" "sphere"   
[88513] "formation" "light"     "triangle"  "circle"    "light"     "triangle" 
[88519] "light"     "unknown"   "formation" NA          "formation" "light"    
[88525] "other"     "light"     "circle"    "light"     "other"     "sphere"   
[88531] "light"     "circle"    "light"     "light"     "other"     "triangle" 
[88537] "sphere"    "unknown"   "formation" "formation" "triangle"  "fireball" 
[88543] "diamond"   "circle"    "oval"      "light"     "light"     "fireball" 
[88549] "light"     "teardrop"  "light"     "triangle"  "fireball"  "unknown"  
[88555] "sphere"    "oval"      "changing"  "circle"    "fireball"  "other"    
[88561] "fireball"  "light"     "light"     "changing"  "fireball"  "circle"   
[88567] "triangle"  "circle"    "chevron"   "formation" "light"     "changing" 
[88573] "diamond"   "sphere"    "circle"    "teardrop"  "light"     "chevron"  
[88579] "light"     "formation" "light"     "circle"    "circle"    "circle"   
[88585] "cylinder"  "light"     "fireball"  "flash"     "fireball"  "light"    
[88591] "sphere"    "fireball"  "light"     "fireball"  NA          "fireball" 
[88597] "light"     "triangle"  "other"     "light"     "unknown"   "other"    
[88603] "light"     "triangle"  "sphere"    "triangle"  "changing"  "unknown"  
[88609] "sphere"    "fireball"  "cross"     "light"     "flash"     "light"    
[88615] "unknown"   "sphere"    "fireball"  "light"     "fireball"  "fireball" 
[88621] "cigar"     "circle"    "disk"      "cigar"     "unknown"   "circle"   
[88627] "sphere"    "rectangle" "disk"      "other"     "sphere"    "changing" 
[88633] "triangle"  "sphere"    "cigar"     "cigar"     "fireball"  "chevron"  
[88639] NA          NA          "disk"      "oval"      "formation" "light"    
[88645] "cylinder"  "light"     "changing"  "circle"    "fireball"  "disk"     
[88651] "disk"      "other"     NA          "other"     "disk"      "triangle" 
[88657] "flash"     "fireball"  "light"     "light"     "fireball"  "changing" 
[88663] "disk"      "triangle"  "fireball"  "fireball"  "changing"  "cigar"    
[88669] "triangle"  "disk"      "sphere"    "unknown"   "unknown"   "cigar"    
[88675] "triangle"  "sphere"    "unknown"   "light"     "sphere"    "oval"     
[88681] "chevron"   "chevron"   NA          NA          NA          "changing" 
[88687] "other"     "circle"    "triangle"  "triangle"  "other"     "circle"   
[88693] "triangle"  "fireball"  "triangle"  "fireball"  "fireball"  "light"    
[88699] "other"     "changing"  "oval"      "triangle"  "light"     "light"    
[88705] "circle"    "light"     "other"     "sphere"    NA          "light"    
[88711] "other"     "sphere"    "light"     "light"     "other"     "unknown"  
[88717] "other"     "teardrop"  "light"     "light"     "rectangle" "disk"     
[88723] "unknown"   "unknown"   "formation" "light"     "triangle"  "disk"     
[88729] "light"     "other"     "light"     "light"     "light"     "fireball" 
[88735] "formation" "other"     "unknown"   "disk"      "light"     "unknown"  
[88741] "cylinder"  "light"     "fireball"  "teardrop"  "formation" "other"    
[88747] "circle"    "sphere"    "circle"    "light"     "other"     "formation"
[88753] "other"     "light"     "unknown"   "unknown"   "egg"       "oval"     
[88759] "oval"      "cigar"     "light"     "light"     "sphere"    "triangle" 
[88765] "formation" "circle"    "light"     "triangle"  "chevron"   NA         
[88771] "rectangle" "other"     "circle"    "light"     "light"     "unknown"  
[88777] "light"     "light"     "circle"    "light"     "triangle"  "light"    
[88783] "changing"  "light"     "light"     "other"     "fireball"  "light"    
[88789] "triangle"  "circle"    "light"     "light"     "disk"      "egg"      
[88795] "circle"    "circle"    "sphere"    "rectangle" "light"     "other"    
[88801] "light"     "changing"  "oval"      "oval"      "fireball"  "circle"   
[88807] "sphere"    "diamond"   "sphere"    "oval"      "oval"      "oval"     
[88813] "fireball"  "circle"    "sphere"    "unknown"   "cylinder"  "unknown"  
[88819] "light"     "light"     "changing"  "light"     NA          "diamond"  
[88825] "triangle"  "triangle"  "light"     "formation" "circle"    "other"    
[88831] "light"     "disk"      "disk"      "circle"    "circle"    "fireball" 
[88837] "formation" "fireball"  "sphere"    "light"     "circle"    "light"    
[88843] "chevron"   "circle"    "oval"      "light"     "oval"      "circle"   
[88849] "flash"     "light"     "unknown"   "triangle"  "unknown"   "light"    
[88855] "cylinder"  "unknown"   "cigar"     "unknown"   "cigar"     "other"    
[88861] "fireball"  "fireball"  "light"     "triangle"  "light"     "fireball" 
[88867] "sphere"    "light"     "circle"    "disk"      "other"     "circle"   
[88873] "cigar"     "diamond"   "oval"     

Check for NAs

use sum(is.na()):

sum(is.na(ufo_shapes))
[1] 3118

dplyr: count

Use count directly on a data.frame and column: count the number of rows in each group.

ufo %>% count(shape)
# A tibble: 30 × 2
   shape        n
   <chr>    <int>
 1 changed      1
 2 changing  2140
 3 chevron   1007
 4 cigar     2241
 5 circle    8453
 6 cone       367
 7 crescent     2
 8 cross      265
 9 cylinder  1382
10 delta        8
# ℹ 20 more rows

dplyr: count

Multiple columns listed further subdivides the count.

ufo %>% count(shape, country)
# A tibble: 139 × 3
   shape    country     n
   <chr>    <chr>   <int>
 1 changed  us          1
 2 changing au         10
 3 changing ca         73
 4 changing de          2
 5 changing gb         47
 6 changing us       1708
 7 changing <NA>      300
 8 chevron  au          3
 9 chevron  ca         38
10 chevron  de          1
# ℹ 129 more rows

dplyr: count

Option to sort the results with sort = TRUE

ufo %>% count(shape, sort = TRUE)
# A tibble: 30 × 2
   shape        n
   <chr>    <int>
 1 light    17872
 2 triangle  8489
 3 circle    8453
 4 fireball  6562
 5 unknown   6319
 6 other     6247
 7 disk      6005
 8 sphere    5755
 9 oval      4119
10 <NA>      3118
# ℹ 20 more rows

GUT CHECK!

The count() function can help us tally:

A. Sample size

B. Rows per each category

C. How many categories

dplyr: count

Instead of counting the number of rows in each group, wt computes sum() of a column for each group.

# Add up "duration_s" for each "shape" category
ufo %>% count(shape, wt = duration_s)
# A tibble: 30 × 2
   shape            n
   <chr>        <dbl>
 1 changed      3600 
 2 changing  4137860.
 3 chevron    492047.
 4 cigar     4045685.
 5 circle   36407947.
 6 cone     26182820 
 7 crescent    37810 
 8 cross      174465 
 9 cylinder  4400398.
10 delta       16155 
# ℹ 20 more rows

Grouping

Perform Operations By Groups: dplyr

Regular data…

# No group_by()
ufo
# A tibble: 88,875 × 11
   datetime city  state country shape duration_s `duration (hours/min)` comments
   <chr>    <chr> <chr> <chr>   <chr>      <dbl> <chr>                  <chr>   
 1 10/10/1… san … tx    us      cyli…       2700 45 minutes             This ev…
 2 10/10/1… lack… tx    <NA>    light       7200 1-2 hrs                1949 La…
 3 10/10/1… ches… <NA>  gb      circ…         20 20 seconds             Green/O…
 4 10/10/1… edna  tx    us      circ…         20 1/2 hour               My olde…
 5 10/10/1… kane… hi    us      light        900 15 minutes             AS a Ma…
 6 10/10/1… bris… tn    us      sphe…        300 5 minutes              My fath…
 7 10/10/1… pena… <NA>  gb      circ…        180 about 3 mins           penarth…
 8 10/10/1… norw… ct    us      disk        1200 20 minutes             A brigh…
 9 10/10/1… pell… al    us      disk         180 3  minutes             Strobe …
10 10/10/1… live… fl    us      disk         120 several minutes        Saucer …
# ℹ 88,865 more rows
# ℹ 3 more variables: `date posted` <chr>, latitude <chr>, longitude <chr>

Perform Operations By Groups: dplyr

group_by allows you group the data set by variables/columns you specify:

ufo_grouped <- ufo %>% group_by(shape)
ufo_grouped
# A tibble: 88,875 × 11
# Groups:   shape [30]
   datetime city  state country shape duration_s `duration (hours/min)` comments
   <chr>    <chr> <chr> <chr>   <chr>      <dbl> <chr>                  <chr>   
 1 10/10/1… san … tx    us      cyli…       2700 45 minutes             This ev…
 2 10/10/1… lack… tx    <NA>    light       7200 1-2 hrs                1949 La…
 3 10/10/1… ches… <NA>  gb      circ…         20 20 seconds             Green/O…
 4 10/10/1… edna  tx    us      circ…         20 1/2 hour               My olde…
 5 10/10/1… kane… hi    us      light        900 15 minutes             AS a Ma…
 6 10/10/1… bris… tn    us      sphe…        300 5 minutes              My fath…
 7 10/10/1… pena… <NA>  gb      circ…        180 about 3 mins           penarth…
 8 10/10/1… norw… ct    us      disk        1200 20 minutes             A brigh…
 9 10/10/1… pell… al    us      disk         180 3  minutes             Strobe …
10 10/10/1… live… fl    us      disk         120 several minutes        Saucer …
# ℹ 88,865 more rows
# ℹ 3 more variables: `date posted` <chr>, latitude <chr>, longitude <chr>

Summarize the grouped data

We can summarize grouped data using summarize():

ufo_grouped %>% 
  summarize(mean_value = mean(duration_s, na.rm = TRUE))
# A tibble: 30 × 2
   shape    mean_value
   <chr>         <dbl>
 1 changed       3600 
 2 changing      1934.
 3 chevron        489.
 4 cigar         1805.
 5 circle        4308.
 6 cone         71343.
 7 crescent     18905 
 8 cross          658.
 9 cylinder      3184.
10 delta         2019.
# ℹ 20 more rows

Use the pipe to string these together!

Pipe ufo into group_by, then pipe that into summarize:

ufo %>%
  group_by(shape) %>%
  summarize(mean_value = mean(duration_s, na.rm = TRUE),
            max_value = max(duration_s, na.rm = TRUE))
# A tibble: 30 × 3
   shape    mean_value max_value
   <chr>         <dbl>     <dbl>
 1 changed       3600       3600
 2 changing      1934.    172800
 3 chevron        489.     43200
 4 cigar         1805.   1814400
 5 circle        4308.  10526400
 6 cone         71343.  25248000
 7 crescent     18905      37800
 8 cross          658.     10800
 9 cylinder      3184.   2631600
10 delta         2019.     14400
# ℹ 20 more rows

group_by with mutate - Useful for comparisons

Use group_by to calculate the mean value for each shape. We can use mutate to add it as a column.

ufo_compare <- ufo %>%
  group_by(shape) %>%
  mutate(duration_shape_avg = mean(duration_s, na.rm = TRUE)) %>%
  select(shape, duration_s, duration_shape_avg)
ufo_compare
# A tibble: 88,875 × 3
# Groups:   shape [30]
   shape    duration_s duration_shape_avg
   <chr>         <dbl>              <dbl>
 1 cylinder       2700              3184.
 2 light          7200             12256.
 3 circle           20              4308.
 4 circle           20              4308.
 5 light           900             12256.
 6 sphere          300             20411.
 7 circle          180              4308.
 8 disk           1200              2018.
 9 disk            180              2018.
10 disk            120              2018.
# ℹ 88,865 more rows

group_by with mutate - Useful for comparisons

Create a “difference” variable:

ufo_compare %>% mutate(diff = duration_s - duration_shape_avg)
# A tibble: 88,875 × 4
# Groups:   shape [30]
   shape    duration_s duration_shape_avg    diff
   <chr>         <dbl>              <dbl>   <dbl>
 1 cylinder       2700              3184.   -484.
 2 light          7200             12256.  -5056.
 3 circle           20              4308.  -4288.
 4 circle           20              4308.  -4288.
 5 light           900             12256. -11356.
 6 sphere          300             20411. -20111.
 7 circle          180              4308.  -4128.
 8 disk           1200              2018.   -818.
 9 disk            180              2018.  -1838.
10 disk            120              2018.  -1898.
# ℹ 88,865 more rows

Iterative summaries

Iterative summaries: dplyr summarize() and across() functions

Use the across function with summarize() to summarize across multiple columns of your data.

dropouts <- read_delim("https://sisbid.github.io/Data-Wrangling/data/dropouts.txt", delim = "/")
dropouts %>%
  group_by(ETHNIC) %>%
  summarize(across(c(D9, D10, D11, D12), ~sum(.x)))
# A tibble: 9 × 5
  ETHNIC    D9   D10   D11   D12
   <dbl> <dbl> <dbl> <dbl> <dbl>
1      0  1226   299   308   478
2      1   103    82   124   265
3      2   118   114   132   767
4      3    37    25    34   135
5      4    34    30    51   252
6      5  4433  3543  4723 16220
7      6   817   617   875  2890
8      7   768   878  1432  3998
9      9   162   155   194   636

Select different columns based on the data class

Use ?tidyr_tidy_select functions like where(is.numeric)!

dropouts %>% 
  group_by(ETHNIC) %>% 
  summarize(across( where(is.numeric), ~ sum(.x, na.rm = TRUE)))
# A tibble: 9 × 18
  ETHNIC     E7     E8     E9    E10    E11    E12   EUS    ETOT    D7    D8
   <dbl>  <dbl>  <dbl>  <dbl>  <dbl>  <dbl>  <dbl> <dbl>   <dbl> <dbl> <dbl>
1      0   2922   2709   3140   3291   2776   2345    43   11595    66    52
2      1   2523   2589   2808   2886   2889   3020    33   11636    16    15
3      2  44199  43898  43343  43757  45840  43001   596  176537    69    37
4      3   2390   2284   2436   2352   2471   2571    42    9872     9     7
5      4  12210  12883  13429  14037  14273  14469   233   56441    12     8
6      5 254745 252583 264302 260201 252458 253193  2680 1032834   682   550
7      6  26383  26786  28497  28731  28696  30799   485  117208   217   164
8      7 113498 115139 115593 117592 119308 121771  1829  476093   323   267
9      9  14704  13469  13999  13238  12810  13000   138   53185    59    38
# ℹ 7 more variables: D9 <dbl>, D10 <dbl>, D11 <dbl>, D12 <dbl>, DUS <dbl>,
#   DTOT <dbl>, YEAR <dbl>

summary() Function

Using summary() can give you rough snapshots of each numeric column (character columns are skipped):

summary(dropouts)
   CDS_CODE             ETHNIC         GENDER                E7         
 Length:59599       Min.   :0.000   Length:59599       Min.   :  0.000  
 Class :character   1st Qu.:2.000   Class :character   1st Qu.:  0.000  
 Mode  :character   Median :5.000   Mode  :character   Median :  0.000  
                    Mean   :4.737                      Mean   :  7.946  
                    3rd Qu.:7.000                      3rd Qu.:  3.000  
                    Max.   :9.000                      Max.   :373.000  
       E8                E9              E10               E11         
 Min.   :  0.000   Min.   :  0.00   Min.   :  0.000   Min.   :  0.000  
 1st Qu.:  0.000   1st Qu.:  0.00   1st Qu.:  0.000   1st Qu.:  0.000  
 Median :  0.000   Median :  0.00   Median :  0.000   Median :  0.000  
 Mean   :  7.925   Mean   :  8.18   Mean   :  8.156   Mean   :  8.079  
 3rd Qu.:  3.000   3rd Qu.:  2.00   3rd Qu.:  2.000   3rd Qu.:  2.000  
 Max.   :363.000   Max.   :567.00   Max.   :537.000   Max.   :620.000  
      E12               EUS              ETOT               D7          
 Min.   :  0.000   Min.   : 0.000   Min.   :   0.00   Min.   : 0.00000  
 1st Qu.:  0.000   1st Qu.: 0.000   1st Qu.:   0.00   1st Qu.: 0.00000  
 Median :  0.000   Median : 0.000   Median :   1.00   Median : 0.00000  
 Mean   :  8.124   Mean   : 0.102   Mean   :  32.64   Mean   : 0.02438  
 3rd Qu.:  2.000   3rd Qu.: 0.000   3rd Qu.:   9.00   3rd Qu.: 0.00000  
 Max.   :490.000   Max.   :77.000   Max.   :2127.00   Max.   :15.00000  
       D8                D9                D10                D11          
 Min.   :0.00000   Min.   :  0.0000   Min.   : 0.00000   Min.   :  0.0000  
 1st Qu.:0.00000   1st Qu.:  0.0000   1st Qu.: 0.00000   1st Qu.:  0.0000  
 Median :0.00000   Median :  0.0000   Median : 0.00000   Median :  0.0000  
 Mean   :0.01909   Mean   :  0.1292   Mean   : 0.09636   Mean   :  0.1321  
 3rd Qu.:0.00000   3rd Qu.:  0.0000   3rd Qu.: 0.00000   3rd Qu.:  0.0000  
 Max.   :8.00000   Max.   :461.0000   Max.   :80.00000   Max.   :108.0000  
      D12                DUS                 DTOT               YEAR     
 Min.   :  0.0000   Min.   : 0.000000   Min.   :  0.0000   Min.   :1617  
 1st Qu.:  0.0000   1st Qu.: 0.000000   1st Qu.:  0.0000   1st Qu.:1617  
 Median :  0.0000   Median : 0.000000   Median :  0.0000   Median :1617  
 Mean   :  0.4302   Mean   : 0.004933   Mean   :  0.7928   Mean   :1617  
 3rd Qu.:  0.0000   3rd Qu.: 0.000000   3rd Qu.:  0.0000   3rd Qu.:1617  
 Max.   :372.0000   Max.   :11.000000   Max.   :541.0000   Max.   :1617  

Summary